andevs commited on
Commit
8da95ef
·
verified ·
1 Parent(s): 4b25b99

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -3,9 +3,12 @@ FROM python:3.9-slim
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
 
 
6
  COPY app.py .
7
 
8
- RUN pip install --no-cache-dir -r requirements.txt
 
9
 
10
  EXPOSE 7860
11
 
 
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
  COPY app.py .
9
 
10
+ # Create data directory for persistent storage
11
+ RUN mkdir -p /data
12
 
13
  EXPOSE 7860
14