calc/Dockerfile

8 lines
124 B
Docker
Raw Normal View History

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