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