Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -8,7 +8,8 @@ WORKDIR /code
|
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
# Install the Python dependencies
|
11 |
-
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
12 |
|
13 |
# Copy the entire content of the current directory into the container
|
14 |
COPY . .
|
|
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
# Install the Python dependencies
|
11 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt -q langchain transformers accelerate bitsandbytes
|
12 |
+
|
13 |
|
14 |
# Copy the entire content of the current directory into the container
|
15 |
COPY . .
|