utils/Dockerfile
2025-03-23 03:36:20 -05:00

7 lines
152 B
Docker

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