FROM python:3.10-slim-buster
COPY . /opt/app
WORKDIR /opt/app
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "-m" , "app.py"]