rockerritesh commited on
Commit
44c1286
·
verified ·
1 Parent(s): 8fe59a0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -9,7 +9,7 @@ COPY requirements.txt /app/requirements.txt
9
 
10
  # Install any dependencies specified in requirements.txt
11
  RUN pip install --upgrade pip
12
- RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  # Copy the rest of the working directory contents into the container at /app
15
  COPY app.py /app
 
9
 
10
  # Install any dependencies specified in requirements.txt
11
  RUN pip install --upgrade pip
12
+ RUN pip install -r requirements.txt
13
 
14
  # Copy the rest of the working directory contents into the container at /app
15
  COPY app.py /app