ape-ame-backend/Dockerfile

9 lines
130 B
Text
Raw Normal View History

2025-01-22 11:11:36 -05:00
FROM python:alpine3.11
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
2025-01-22 16:17:23 -05:00
CMD ["waitress-serve", "main:app"]