File size: 173 Bytes
2f65fb7
 
 
0798ed6
2f65fb7
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install huggingface_hub
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860

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