Spaces:
Runtime error
Runtime error
initial
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -2,6 +2,8 @@ FROM python:3.9
|
|
2 |
WORKDIR /code
|
3 |
COPY ./requirements.txt /code/requirements.txt
|
4 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
|
|
5 |
RUN git clone https://huggingface.co/sentence-transformers/quora-distilbert-multilingual model
|
6 |
COPY . .
|
7 |
ENV PYTHONPATH "${PYTHONPATH}:/code/app/"
|
|
|
2 |
WORKDIR /code
|
3 |
COPY ./requirements.txt /code/requirements.txt
|
4 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
5 |
+
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.python.sh | bash
|
6 |
+
RUN git lfs install
|
7 |
RUN git clone https://huggingface.co/sentence-transformers/quora-distilbert-multilingual model
|
8 |
COPY . .
|
9 |
ENV PYTHONPATH "${PYTHONPATH}:/code/app/"
|