shrijayan commited on
Commit
7ea2858
·
verified ·
1 Parent(s): 6d97d84

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,12 +1,14 @@
1
- FROM python:3.13-slim
2
 
3
  WORKDIR /app
4
 
 
 
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY app.py config.yaml ./
9
 
10
- VOLUME /data # Hugging Face persistent storage
11
 
12
  CMD ["python", "app.py"]
 
1
+ FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt-get update && apt-get install -y curl
6
+
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY app.py config.yaml ./
11
 
12
+ VOLUME /data
13
 
14
  CMD ["python", "app.py"]