Fix Dockerfile

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

View File

@ -1,6 +1,6 @@
FROM debian:11 FROM debian:11
WORKDIR /calc WORKDIR /calc
RUN apt update && apt install g++ make RUN apt-get update && apt-get install -y g++ make
COPY main.cpp . COPY main.cpp .
COPY Makefile . COPY Makefile .
RUN make RUN make