Al1Abdullah commited on
Commit
8496933
·
verified ·
1 Parent(s): 3874558

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -8,6 +8,9 @@ WORKDIR /app
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
 
 
 
11
  # Copy application files
12
  COPY app.py .
13
  COPY templates/ templates/
 
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
+ # Clear pip cache to avoid conflicts
12
+ RUN pip cache purge
13
+
14
  # Copy application files
15
  COPY app.py .
16
  COPY templates/ templates/