ASTAROTH0405 commited on
Commit
d0f1f34
·
verified ·
1 Parent(s): 5871fd9

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. Dockerfile +5 -0
  2. entrypoint.sh +3 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ghcr.io/nesquena/hermes-webui:latest
2
+ EXPOSE 7860
3
+ COPY entrypoint.sh /entrypoint.sh
4
+ RUN chmod +x /entrypoint.sh
5
+ ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ #!/bin/bash
2
+ # Ajustar el puerto de la WebUI al requerido por Hugging Face
3
+ exec python3 -m webui --host 0.0.0.0 --port 7860