Fix build for release

This commit is contained in:
Konstantin 2024-03-15 07:33:33 +01:00
parent 9a5489c170
commit 4d32d135d8
3 changed files with 8 additions and 3 deletions

View file

@ -24,6 +24,11 @@ RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-r
libwebp-dev \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get upgrade -y
# Install the latest version of pip.
RUN pip install --upgrade pip
# Install the application server.
RUN pip install "gunicorn==20.0.4"