WebashalarForML commited on
Commit
5bd27b9
·
verified ·
1 Parent(s): a9c0745

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -13,7 +13,8 @@ RUN apt-get update && apt-get install -y \
13
 
14
  # Copy requirements and install Python dependencies
15
  COPY requirements.txt .
16
- RUN pip install --no-cache-dir --user -r requirements.txt
 
17
 
18
  # Production stage
19
  FROM python:3.11-slim
 
13
 
14
  # Copy requirements and install Python dependencies
15
  COPY requirements.txt .
16
+ # RUN pip install --no-cache-dir --user -r requirements.txt
17
+ RUN pip install --no-cache-dir -r requirements.txt
18
 
19
  # Production stage
20
  FROM python:3.11-slim