From be72ded08c4865a63d249154ebbbf6777110d816 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 2 May 2022 17:07:26 +0700 Subject: [PATCH] upgrade pip setuptools to fix uwsgi build error --- tubearchivist/web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tubearchivist/web/Dockerfile b/tubearchivist/web/Dockerfile index 03cb5a3..3e6006c 100644 --- a/tubearchivist/web/Dockerfile +++ b/tubearchivist/web/Dockerfile @@ -6,7 +6,8 @@ RUN apt-get clean && apt-get -y update && \ vim htop bmon net-tools iputils-ping procps COPY requirements.txt /requirements.txt -RUN pip install --no-cache-dir -r /requirements.txt --src /usr/local/src +RUN pip install --upgrade pip setuptools && \ + pip install --no-cache-dir -r /requirements.txt --src /usr/local/src COPY . /srv/flask_app WORKDIR /srv/flask_app