From 52e121af97ce473c3a6e22b141f6c5c96c097b19 Mon Sep 17 00:00:00 2001 From: Christian Merten Date: Thu, 30 Mar 2023 18:07:12 +0200 Subject: [PATCH] docker/production: install uwsgi and normal requirements in one step --- docker/production/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 7b78036..87764da 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -22,9 +22,6 @@ ENV PATH="/app/.local/bin:$PATH" # install requirements COPY --chown=app:app ./requirements.txt /app/requirements.txt -RUN pip install -r requirements.txt - -# for production, install uwsgi -RUN pip install uwsgi +RUN pip install uwsgi -r requirements.txt COPY --chown=app:app . /app