wangyoucao577 commited on
Commit
95e409e
·
verified ·
1 Parent(s): faeff3c

fix: workdir

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -39,7 +39,7 @@ ENV HOME=/home/user \
39
  PATH=/home/user/.local/bin:$PATH
40
 
41
  # Set the working directory to the user's home directory
42
- # WORKDIR $HOME/app
43
 
44
  # Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
45
  RUN pip install --no-cache-dir --upgrade pip
 
39
  PATH=/home/user/.local/bin:$PATH
40
 
41
  # Set the working directory to the user's home directory
42
+ WORKDIR $HOME/app
43
 
44
  # Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
45
  RUN pip install --no-cache-dir --upgrade pip