From 2539211e7930819b49dd61a68664a72fade5bd67 Mon Sep 17 00:00:00 2001 From: Pouria Hadjibagheri Date: Sat, 2 Apr 2022 17:09:00 +0100 Subject: [PATCH] minor update --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index be99582..b67d939 100644 --- a/Dockerfile +++ b/Dockerfile @@ -110,9 +110,8 @@ RUN apt update && \ # Installing Python requirements COPY ./requirements.txt $_INSTALLATION/requirements.txt -RUN python3 -m pip install --no-cache-dir -U pip && \ - python3 -m pip install --no-cache-dir setuptools && \ - python3 -m pip install -U --no-cache-dir -r $_INSTALLATION/requirements.txt +RUN pip install --no-cache-dir -U pip setuptools wheel && \ + pip install -U --no-cache-dir -r $_INSTALLATION/requirements.txt # Nginx configurations COPY server/nginx/base.nginx $_NGINX_BASE_PATH/nginx.conf