FROM python:3.9

RUN apt-get update

RUN mkdir  /web_app

COPY .  /web_app


WORKDIR /web_app
RUN pip install --no-cache-dir -r requirements.txt

CMD ["python","app.py"]