navid72m commited on
Commit
cb95c73
·
1 Parent(s): a271d4e

fix dockerfiles

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,9 +10,9 @@ COPY --chown=user:user train.json .
10
 
11
  RUN pip install kaggle
12
 
13
- COPY kaggle.json /root/.kaggle/
14
 
15
- RUN chmod 600 /root/.kaggle/kaggle.json
16
 
17
  # Set up cache directories with appropriate permissions
18
  RUN mkdir -p /.cache && chmod -R 777 /.cache
 
10
 
11
  RUN pip install kaggle
12
 
13
+ COPY kaggle.json /.kaggle/
14
 
15
+ RUN chmod 600 /.kaggle/kaggle.json
16
 
17
  # Set up cache directories with appropriate permissions
18
  RUN mkdir -p /.cache && chmod -R 777 /.cache