From 057943b37f9c942fb5608245c59e7f9b5a6542ab Mon Sep 17 00:00:00 2001 From: Mojtaba-z Date: Mon, 19 Jan 2026 11:49:42 +0330 Subject: [PATCH] fix --> development dockerFi;e --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 62b8d96..09101cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,13 @@ ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 # install dependencies +ENV TZ="Asia/Tehran" +RUN pip config --user set global.index https://mirror-pypi.runflare.com/simple +RUN pip config --user set global.index-url https://mirror-pypi.runflare.com/simple +RUN pip config --user set global.trusted-host mirror-pypi.runflare.com RUN pip install --upgrade pip COPY ./requirements.txt . -RUN --mount=type=cache,target=/root/.cache/pip \ - pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt # copy project COPY . /app/