diff --git a/Dockerfile b/Dockerfile index 4382a53..9f5d5c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:11 WORKDIR /calc -RUN apt update && apt install g++ make +RUN apt-get update && apt-get install -y g++ make COPY main.cpp . COPY Makefile . RUN make