image-label-2 / Dockerfile
pengdaqian
warm up model
61379c6
raw
history blame
252 Bytes
FROM python:3.8
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
ENV TRANSFORMERS_CACHE /var/cache/transformers
WORKDIR $HOME/app
COPY . $HOME/app
# cache model
RUN python3 warm_up.py
CMD ["sh", "-c", "python3 main.py"]