FROM python:3.8 WORKDIR /backend COPY requirements_main.txt . RUN pip install -r requirements_main.txt COPY . . ENTRYPOINT ["python", "main.py"]