From 458823b894a00d4f307a1b81f141c33e1f44afcf Mon Sep 17 00:00:00 2001 From: Tony Rewin Date: Thu, 5 Oct 2023 22:19:20 +0300 Subject: [PATCH] dockerfile-fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 800ab2a3..fab4822b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,6 @@ WORKDIR /app EXPOSE 8080 ADD nginx.conf.sigil ./ COPY requirements.txt . -RUN apt update && apt install -y build-essentials +RUN apt update && apt install -y build-essential RUN pip install -r requirements.txt COPY . .