This commit is contained in:
Mateusz Gruszczyński
2025-09-22 08:16:53 +02:00
parent 73a4e6149a
commit 1064476c63
2 changed files with 21 additions and 16 deletions

View File

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