FROM python:3.8 COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt WORKDIR $HOME/app COPY . $HOME/app # cache model RUN python3 warm_up.py CMD ["sh", "-c", "python3 main.py"]