Dockerfile (view raw)
1FROM python:3-alpine 2 3COPY . . 4RUN pip install --upgrade pip 5RUN pip install -r requirements.txt 6CMD ["waitress-serve", "--host", "127.0.0.1", "--port", "5000", "main:app"]