cryogenic22 commited on
Commit
1b0e4a0
·
verified ·
1 Parent(s): df9f420

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /code
4
 
 
 
 
5
  COPY requirements.txt .
6
  COPY app.py .
7
 
 
2
 
3
  WORKDIR /code
4
 
5
+ # Create cache directory with proper permissions
6
+ RUN mkdir -p /.cache && chmod 777 /.cache
7
+
8
  COPY requirements.txt .
9
  COPY app.py .
10