7 lines
204 B
Docker
7 lines
204 B
Docker
FROM python:3.13-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
RUN chmod +x run_waitress.py
|
|
ENTRYPOINT ["python3", "run_waitress.py"] |