From 9475a01e237d9b3ad307f20e53c20ebef07dc874 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 14 Jun 2022 11:17:45 +0700 Subject: [PATCH] fix uwsgi build --- tubearchivist/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/web/Dockerfile b/tubearchivist/web/Dockerfile index 5bb74e8..a629cc5 100644 --- a/tubearchivist/web/Dockerfile +++ b/tubearchivist/web/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get clean && apt-get -y update && \ ENV PATH=/root/.local/bin:$PATH COPY requirements.txt /requirements.txt -RUN pip install --user -r requirements.txt +RUN pip install --upgrade pip && pip install --user -r requirements.txt RUN mkdir /data