faisalshah012003 commited on
Commit
793f3a3
·
verified ·
1 Parent(s): 9da31b6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ WORKDIR /app
5
  # Install build dependencies (if any are needed by pip packages)
6
  # Remove build dependencies afterward if minimizing size is critical
7
  COPY requirements.txt .
8
- RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  # Copy application code
11
  COPY . .
 
5
  # Install build dependencies (if any are needed by pip packages)
6
  # Remove build dependencies afterward if minimizing size is critical
7
  COPY requirements.txt .
8
+ RUN pip install -r requirements.txt
9
 
10
  # Copy application code
11
  COPY . .