File size: 325 Bytes
85b3986
 
 
 
 
 
 
 
a39f8ba
85b3986
59721f9
85b3986
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3.10

WORKDIR /app

COPY ./requirements.txt /app/requirements.txt

RUN pip install --no-cache-dir --upgrade -r requirements.txt

RUN wget https://huggingface.co/damerajee/mingru/resolve/main/best_model_2.pt -O best_model.pt


RUN useradd -m -u 1000 user

USER user

COPY --chown=user . .

CMD ["python", "app.py"]