File size: 300 Bytes
cd67f8f
 
 
 
 
 
e184671
2da5d30
cd67f8f
f13a5e9
 
cd67f8f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.12

WORKDIR .

COPY . .

ENV HF_HOME=./

RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
RUN pip install --no-cache-dir -r models/transformer/requirements.txt
RUN pip install --no-cache-dir -r models/seq2seq/requirements.txt

CMD ["uvicorn", "server:app", "--port", "80"]