From f4112d27548f010c025b9bdd39a55255f076d5dc Mon Sep 17 00:00:00 2001 From: bart-maykin Date: Wed, 28 Aug 2024 09:11:08 +0200 Subject: [PATCH] :bug: [#50] moved setuptools installation in dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9932ade..91bb02d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,10 +20,9 @@ WORKDIR /app RUN mkdir /app/src # Ensure we use the latest version of pip -RUN pip install pip "setuptools>=70.0.0" -U COPY ./requirements /app/requirements RUN pip install -r requirements/production.txt - +RUN pip install pip "setuptools>=70.0.0" # Stage 2 - Install frontend deps and build assets FROM node:20-bookworm-slim AS frontend-build