yunzi7 commited on
Commit
21c4e4d
β€’
1 Parent(s): f48275c

update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -7,8 +7,11 @@ WORKDIR /app
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
10
- # ν˜„μž¬ μ‚¬μš©μžλ‘œ μ†Œμœ μž λ³€κ²½
11
- RUN chown -R $USER:$USER /app
 
 
 
12
 
13
  # Create the flask_session directory and set the appropriate permissions
14
  RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session
 
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
10
+ # Create .kaggle directory and set permissions
11
+ RUN mkdir -p /.kaggle && chmod -R 777 /.kaggle
12
+
13
+ # Create .cache directory and set permissions
14
+ RUN mkdir -p /.cache && chmod -R 777 /.cache
15
 
16
  # Create the flask_session directory and set the appropriate permissions
17
  RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session