This commit is contained in:
Mateusz Gruszczyński
2025-09-22 08:27:41 +02:00
parent 911aaab005
commit e23a015cdf
3 changed files with 19 additions and 17 deletions

View File

@@ -1,11 +1,7 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "run_waitress.py"]
CMD ["python3", "run_waitress.py"]