randomshit11 commited on
Commit
16c0bad
·
verified ·
1 Parent(s): 1940ecf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -9,7 +9,9 @@ WORKDIR /code
9
  COPY ./requirements.txt /code/requirements.txt
10
 
11
  # Install any needed dependencies
12
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
 
13
 
14
  COPY . .
15
 
 
9
  COPY ./requirements.txt /code/requirements.txt
10
 
11
  # Install any needed dependencies
12
+ # RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
+
14
+ RUN pip install --upgrade pip && pip install -r requirements.txt
15
 
16
  COPY . .
17