derek-thomas HF staff commited on
Commit
8a1aeb9
·
1 Parent(s): 4598cff

Trying running after copying

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -88,8 +88,9 @@ RUN --mount=target=requirements.txt,source=requirements.txt \
88
  pip install --no-cache-dir --upgrade -r requirements.txt
89
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
90
  COPY --chown=user . $HOME/app
91
- RUN --mount=target=/home/user/app/on_startup_user.sh,source=on_startup_user.sh,readwrite \
92
- bash /home/user/app/on_startup_user.sh
 
93
 
94
  RUN chmod +x start_server.sh
95
 
 
88
  pip install --no-cache-dir --upgrade -r requirements.txt
89
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
90
  COPY --chown=user . $HOME/app
91
+ RUN bash /home/user/app/on_startup_user.sh
92
+ #RUN --mount=target=/home/user/app/on_startup_user.sh,source=on_startup_user.sh,readwrite \
93
+ # bash /home/user/app/on_startup_user.sh
94
 
95
  RUN chmod +x start_server.sh
96