MisterAI commited on
Commit
456e344
·
verified ·
1 Parent(s): 509e097

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -4
Dockerfile CHANGED
@@ -13,10 +13,12 @@ RUN mkdir -p /configuration && \
13
  COPY nginx.conf /etc/nginx/conf.d/default.conf
14
 
15
  # Copier script de démarrage HFSpace
16
- COPY HFSpace_Entrypoint.sh /HFSpace_Entrypoint.sh
17
- RUN chmod +x /HFSpace_Entrypoint.sh
 
 
18
 
19
  EXPOSE 7860
20
 
21
- CMD ["/HFSpace_Entrypoint.sh"]
22
- #Modify Entrypoint05
 
13
  COPY nginx.conf /etc/nginx/conf.d/default.conf
14
 
15
  # Copier script de démarrage HFSpace
16
+ #COPY HFSpace_Entrypoint.sh /HFSpace_Entrypoint.sh
17
+ #RUN chmod +x /HFSpace_Entrypoint.sh
18
+ COPY HFSpace_Entrypoint.sh /entrypoint.sh
19
+ RUN chmod +x /entrypoint.sh
20
 
21
  EXPOSE 7860
22
 
23
+ CMD ["/entrypoint.sh"]
24
+ #Modify Entrypoint06