FROM python WORKDIR /app COPY . . RUN pip install -r requirements.txt CMD ["waitress-serve", "--listen=0.0.0.0:8080", "app:app"] EXPOSE 8080