This commit is contained in:
Ilya Mukhortov 2025-03-23 10:46:09 +10:00
parent 6a40773ca0
commit e427625454
1 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,8 @@ RUN apt-get install -y \
WORKDIR /app WORKDIR /app
ADD requirements.txt ./ ADD requirements.txt ./
RUN pip install pip==25.0.1 && pip install -r ./requirements.txt RUN pip install --no-cache-dir pip==25.0.1 && \
pip install --no-cache-dir -r ./requirements.txt
FROM python-nginx AS app-files FROM python-nginx AS app-files