Gajendra5490 commited on
Commit
0993efb
·
verified ·
1 Parent(s): 512cb42

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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