Archisman Karmakar commited on
Commit
8712ebe
·
1 Parent(s): 08ce33a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -19,6 +19,9 @@ COPY requirements.txt .
19
  # Upgrade pip and install Python dependencies
20
  RUN pip install --upgrade pip && pip install -r requirements.txt
21
 
 
 
 
22
  # Copy the rest of your app's code
23
  COPY . .
24
 
 
19
  # Upgrade pip and install Python dependencies
20
  RUN pip install --upgrade pip && pip install -r requirements.txt
21
 
22
+ # Check Installed Packages
23
+ RUN pip list
24
+
25
  # Copy the rest of your app's code
26
  COPY . .
27