Upload folder using huggingface_hub
Browse files- Dockerfile +5 -0
- 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
|