JohanDL commited on
Commit
9024002
1 Parent(s): dee17e4

Update docker

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -26,4 +26,7 @@ WORKDIR $HOME/app
26
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
27
  COPY --chown=user . $HOME/app
28
 
29
- CMD ["./run.sh"]
 
 
 
 
26
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
27
  COPY --chown=user . $HOME/app
28
 
29
+ # Make run.sh executable
30
+ RUN chmod +x $HOME/app/run.sh
31
+
32
+ CMD ["./run.sh"]