image-label-3 / Dockerfile
pengdaqian
warm up model
b280673
raw
history blame
352 Bytes
FROM python:3.8
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH \
HF_HOME=/home/app/.cache/huggingface
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
# cache model
RUN python3 warm_up.py
CMD ["sh", "-c", "python3 main.py"]