nyxsite/Dockerfile
2025-03-31 01:34:20 -05:00

7 lines
146 B
Docker

FROM python:3-alpine
WORKDIR /site
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["waitress-serve", "--port=8000", "app.app"]