FROM python:3.11.1-slim
ADD . /root/demo/pepsico-view-services
WORKDIR /root/demo/pepsico-view-services
RUN mkdir ~/.pip
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "app.py"]