aiderd commited on
Commit
8f56a1a
·
1 Parent(s): 38bb3db

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -9,6 +9,10 @@ COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
 
 
 
 
12
  COPY . .
13
 
14
  CMD ["python", "/code/app.py", "--address", "0.0.0.0", "--port", "7860"]
 
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
+ RUN chmod 777 /path/to/flagged
13
+
14
+ RUN chmod 777 /code
15
+
16
  COPY . .
17
 
18
  CMD ["python", "/code/app.py", "--address", "0.0.0.0", "--port", "7860"]