FROM python:alpine WORKDIR /app COPY . . RUN pip install -r requirements.txt EXPOSE 80 EXPOSE 5000 CMD ["python", "__init__.py"]