FROM python:3.9.10-slim
COPY requirements.txt /code/requirements.txt
WORKDIR /code
RUN pip install -r requirements.txt
RUN apt update && apt install curl -y
COPY . /code
CMD [ "python", "app.py" ]