Kartikeyssj2 commited on
Commit
7c38b83
·
verified ·
1 Parent(s): 73cfd62

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -4,6 +4,13 @@ WORKDIR /app
4
 
5
  COPY requirements.txt .
6
 
 
 
 
 
 
 
 
7
  RUN pip install --upgrade pip \
8
  && pip install -r requirements.txt
9
 
 
4
 
5
  COPY requirements.txt .
6
 
7
+ # INSTALL GIT AND PIP DEPENDENCIES
8
+ RUN apt-get update \
9
+ && apt-get install -y git \
10
+ && pip install --upgrade pip \
11
+ && pip install -r requirements.txt \
12
+ && apt-get clean
13
+
14
  RUN pip install --upgrade pip \
15
  && pip install -r requirements.txt
16