dongwook-chan commited on
Commit
d3bd760
1 Parent(s): 0863930
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -16,6 +16,8 @@ RUN mkdir -p /.cache && chmod -R 777 /.cache
16
  # Create the flask_session directory and set the appropriate permissions
17
  RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session
18
 
 
 
19
  # Install any needed packages specified in requirements.txt
20
  RUN pip install --no-cache-dir -r requirements.txt
21
 
 
16
  # Create the flask_session directory and set the appropriate permissions
17
  RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session
18
 
19
+ RUN chmod -R 777 token.json
20
+
21
  # Install any needed packages specified in requirements.txt
22
  RUN pip install --no-cache-dir -r requirements.txt
23