This commit is contained in:
2025-03-07 11:38:22 +03:00
parent 73cb28284d
commit f1d4a2401b
2 changed files with 9 additions and 1 deletions
+5
View File
@@ -6,6 +6,11 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates/ ./templates/
# Установка часового пояса (например, Europe/Moscow для MSK, UTC+3)
ENV TZ=Europe/Moscow
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Создаем и копируем папку uploads (если нужно предзаполнение)
RUN mkdir -p /app/uploads
COPY uploads/ ./uploads/