FROM python:3-alpine
ADD requirements.txt /
RUN pip install -r requirements.txt
ADD main.py /
EXPOSE 8000
CMD [ "python", "./main.py" ]
