File size: 352 Bytes
d39fc00
 
 
 
 
27e0bdf
 
 
2f7f154
d32b88e
27e0bdf
 
 
 
c8fe055
b280673
 
 
d39fc00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]