Yjhhh commited on
Commit
81a5158
·
verified ·
1 Parent(s): 4cfc38d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -5,6 +5,10 @@ WORKDIR /app
5
  COPY requirements.txt ./
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
 
 
 
 
8
  COPY . .
9
 
10
  CMD ["python", "main.py"]
 
5
  COPY requirements.txt ./
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
+ RUN mkdir /.cache
9
+
10
+ RUN chmod -R 777 /.cache
11
+
12
  COPY . .
13
 
14
  CMD ["python", "main.py"]