Imsachinsingh00 commited on
Commit
737ad25
·
verified ·
1 Parent(s): 9f47860

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -7,8 +7,9 @@ WORKDIR /app
7
  # Copy the requirements file
8
  COPY requirements.txt .
9
 
 
10
  # Install dependencies
11
- RUN pip install --no-cache-dir -r requirements.txt --upgrade --ignore-installed
12
 
13
  # Copy the app code
14
  COPY . .
 
7
  # Copy the requirements file
8
  COPY requirements.txt .
9
 
10
+ RUN pip install --upgrade pip
11
  # Install dependencies
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  # Copy the app code
15
  COPY . .