image-label-2 / Dockerfile
pengdaqian
warm up model
450ca22
raw
history blame
204 Bytes
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"]