Create Dockerfile

main
DavidDGTNT 2021-10-27 14:36:28 -05:00 committed by GitHub
parent d5ad0d077b
commit 8f382f8216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM debian:11
WORKDIR /calc
RUN apt update && apt install g++ make
COPY main.cpp .
COPY Makefile .
RUN make
CMD ["./calc"]