This commit is contained in:
Mateusz Gruszczyński
2025-09-22 08:43:53 +02:00
parent 2a065aba3b
commit d102354750
2 changed files with 17 additions and 12 deletions

View File

@@ -1,13 +1,9 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN apt-get update && apt-get install -y build-essential && \
pip install --upgrade pip && pip install -r requirements.txt
COPY . .
RUN mkdir -p /app/instance
EXPOSE 5583
CMD ["python", "run_waitress.py"]
CMD ["python3", "run_waitress.py"]