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