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