Rauhan commited on
Commit
3bc8654
·
1 Parent(s): f56797c

UPDATE: Flashrank

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -6,8 +6,12 @@ COPY . /app
6
 
7
  RUN chmod -R 777 /app
8
 
9
- RUN apt-get update && apt-get install -y
10
-
 
 
 
 
11
  RUN pip install -r requirements.txt
12
 
13
  EXPOSE 7860
 
6
 
7
  RUN chmod -R 777 /app
8
 
9
+ RUN apt-get update && apt-get install -y \
10
+ build-essential \
11
+ cmake \
12
+ && apt-get clean \
13
+ && rm -rf /var/lib/apt/lists/*
14
+
15
  RUN pip install -r requirements.txt
16
 
17
  EXPOSE 7860