FROM python:3.9.10-slim
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]

