shijisan commited on
Commit
5e4db2b
·
verified ·
1 Parent(s): a223a72

updated docker file to give permission to /data dir

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -2,6 +2,8 @@ FROM python:3.12-slim
2
 
3
  RUN apt-get update && apt-get install -y git
4
 
 
 
5
  WORKDIR /app
6
 
7
  COPY requirements.txt .
 
2
 
3
  RUN apt-get update && apt-get install -y git
4
 
5
+ RUN mkdir -p /data/.cache && chmod -R 777 /data/.cache
6
+
7
  WORKDIR /app
8
 
9
  COPY requirements.txt .