Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
10 |
COPY requirements.txt .
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
|
|
|
|
|
|
13 |
# Set working directory
|
14 |
WORKDIR /app
|
15 |
|
|
|
10 |
COPY requirements.txt .
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
+
# Install LLaVA dependencies
|
14 |
+
RUN pip install --no-cache-dir git+https://github.com/haotian-liu/LLaVA.git
|
15 |
+
|
16 |
# Set working directory
|
17 |
WORKDIR /app
|
18 |
|