fffiloni commited on
Commit
7c034bc
·
verified ·
1 Parent(s): eb907eb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -66,8 +66,8 @@ RUN chown -R user:user /home/user/app
66
 
67
  USER user
68
 
69
- # Install basicsr (from the root directory where it was cloned)
70
- RUN python basicsr/setup.py develop
71
 
72
  # Install additional Python packages
73
  RUN pip install ffmpeg-python
 
66
 
67
  USER user
68
 
69
+ # Install basicsr with the --user flag to install in the user's home directory
70
+ RUN python basicsr/setup.py develop --user
71
 
72
  # Install additional Python packages
73
  RUN pip install ffmpeg-python