From 09d5d584b5d207443d4101f4202eb7af9f8cbdca Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Thu, 23 Mar 2023 16:53:53 +0530 Subject: [PATCH] fix: backend prod dockerfile Signed-off-by: Ameya Shenoy --- backend/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 5944983..ff60280 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -15,7 +15,6 @@ COPY requirements.txt / RUN set -ex \ && pip install --no-cache-dir -r /requirements.txt \ && pip install --no-cache-dir gunicorn==$GUNICORN_VERSION \ - && apk del .build-deps \ && addgroup -S ${APP_USER} \ && adduser -S ${APP_USER} -G ${APP_USER} \ && mkdir -p /code/static \