fix - change docker file

This commit is contained in:
2025-11-18 11:57:32 +03:30
parent 62427f0cfd
commit 0a4eb5c731

View File

@@ -14,7 +14,8 @@ ENV PYTHONUNBUFFERED 1
# install dependencies
RUN pip install --upgrade pip
COPY ./requirements.txt /app/
RUN pip install -r requirements.txt
RUN --mount=type=cache,target=/root/.cache/pip \
pip install --no-cache-dir -r requirements.txt
# copy project
COPY . /app/