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