AshjanMohammed commited on
Commit
4789c0f
·
verified ·
1 Parent(s): 0097acf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.13.5-slim
2
 
3
  WORKDIR /app
4
 
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  COPY requirements.txt ./
12
- RUN pip3 install -r requirements.txt
13
 
14
  COPY app.py ./
15
  COPY defense_embeddings_p3.pkl ./
 
1
+ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  COPY requirements.txt ./
12
+ RUN pip3 install --no-cache-dir -r requirements.txt
13
 
14
  COPY app.py ./
15
  COPY defense_embeddings_p3.pkl ./