ape-ame-backend/Dockerfile
Ultrablob c74c71df5f
All checks were successful
ci / docker (push) Successful in 3m21s
add production server to dockerfile
2025-01-22 16:17:23 -05:00

9 lines
No EOL
130 B
Docker

FROM python:alpine3.11
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["waitress-serve", "main:app"]