File size: 429 Bytes
5c8ed39 6770ac1 4721fa1 5c8ed39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.11.9-slim
RUN apt-get update \
&& apt-get install -y git git-lfs curl vim
RUN git lfs install
WORKDIR /usr/src/app
RUN git clone https://huggingface.co/HuggingFaceTB/SmolVLM-500M-Instruct
RUN git clone https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"] |