webdict/Dockerfile
2025-04-06 06:23:40 -05:00

7 lines
No EOL
145 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"]