FROM python:alpine3.11 COPY requirements.txt . RUN pip install -r requirements.txt COPY . . CMD ["python", "./main.py"]