This commit is contained in:
2025-03-06 16:21:59 +03:00
parent 06c2feb619
commit 2a2dc6a30d
5 changed files with 94 additions and 4 deletions
+4
View File
@@ -6,6 +6,10 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates/ ./templates/
# Создаем и копируем папку uploads (если нужно предзаполнение)
RUN mkdir -p /app/uploads
COPY uploads/ ./uploads/
# Экспонируем оба порта
EXPOSE 8001 8002