FROM python:3-alpine
COPY requirements.txt .
RUN pip install -qr requirements.txt
COPY main.py .
CMD ["python3", "./main.py"]