File size: 331 Bytes
8de2aa3
65c6a9e
 
 
8de2aa3
 
f5e52ad
 
65c6a9e
8de2aa3
 
 
 
65c6a9e
 
8de2aa3
f5e52ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3.9-slim

WORKDIR /app

RUN apt-get update && apt-get install -y wget

ARG HF_TOKEN
RUN wget https://huggingface.co/cigol123/YUGO-GPT-Q4_0-GGUF/resolve/main/yugogpt-q4_0.gguf --header="Authorization: Bearer ${HF_TOKEN}"

COPY requirements.txt .
RUN pip install -r requirements.txt

COPY . .

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