multimodalart HF Staff commited on
Commit
1bf3bbb
·
verified ·
1 Parent(s): 631adf1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -22,5 +22,8 @@ RUN chown -R user:user /var/lib/nginx /var/log/nginx /var/www/html
22
 
23
  # Switch back to the non-root user for running applications
24
  USER user
 
 
25
 
26
-
 
 
22
 
23
  # Switch back to the non-root user for running applications
24
  USER user
25
+ COPY start.sh /start.sh
26
+ RUN chmod +x /start.sh
27
 
28
+ # Set the script as the entrypoint
29
+ ENTRYPOINT ["/start.sh"]