Rauhan commited on
Commit
99a8494
·
1 Parent(s): b0a0952

UPDATE: New Endpoints

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -6,14 +6,15 @@ COPY . /app
6
 
7
  RUN chmod -R 777 /app
8
 
9
- RUN apt-get update && apt-get -y upgrade \
 
 
10
  build-essential \
11
  cmake \
 
12
  && apt-get clean \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
- RUN apt-get install poppler-utils -y
16
-
17
  RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
18
 
19
  RUN pip install --no-cache-dir -r requirements.txt
 
6
 
7
  RUN chmod -R 777 /app
8
 
9
+ RUN apt-get -y update && apt-get -y upgrade
10
+
11
+ RUN apt-get install -y \
12
  build-essential \
13
  cmake \
14
+ poppler-utils \
15
  && apt-get clean \
16
  && rm -rf /var/lib/apt/lists/*
17
 
 
 
18
  RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
19
 
20
  RUN pip install --no-cache-dir -r requirements.txt