Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -31,9 +31,9 @@ RUN apt-get update && \
|
|
| 31 |
&& rm -rf /var/lib/apt/lists/*
|
| 32 |
|
| 33 |
# Install text-generation-inference from source for CPU optimization
|
| 34 |
-
RUN git clone https://github.com/huggingface/text-generation-inference.git /app/text-generation-inference
|
| 35 |
-
|
| 36 |
-
|
| 37 |
|
| 38 |
# mongo installation
|
| 39 |
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
|
|
|
|
| 31 |
&& rm -rf /var/lib/apt/lists/*
|
| 32 |
|
| 33 |
# Install text-generation-inference from source for CPU optimization
|
| 34 |
+
RUN git clone https://github.com/huggingface/text-generation-inference.git /app/text-generation-inference
|
| 35 |
+
WORKDIR /app/text-generation-inference
|
| 36 |
+
RUN pip3 install --no-cache-dir .
|
| 37 |
|
| 38 |
# mongo installation
|
| 39 |
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
|