fix: python:3.9-slim как у BG

This commit is contained in:
2026-06-01 18:52:25 +03:00
parent 05bc449035
commit 1b6e2d5519
+3 -2
View File
@@ -1,11 +1,12 @@
FROM python:3.12-slim
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY site site
COPY site /app/site
EXPOSE 5000