calc/Dockerfile

8 lines
135 B
Docker
Raw Permalink Normal View History

2021-10-27 14:36:28 -05:00
FROM debian:11
WORKDIR /calc
2021-10-27 14:40:13 -05:00
RUN apt-get update && apt-get install -y g++ make
2021-10-27 14:36:28 -05:00
COPY main.cpp .
COPY Makefile .
RUN make
CMD ["./calc"]