From 5f59b3cb969e0ba1ecdc26ac6d5a9a2264f4baf1 Mon Sep 17 00:00:00 2001 From: DavidDGTNT <29644042+dugo3number2@users.noreply.github.com> Date: Wed, 27 Oct 2021 14:40:13 -0500 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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