Add Dockerfile with Ollama Cloud config for Railway deploy

This commit is contained in:
Sisyphus 2026-04-24 18:37:52 -03:00
commit b6ccfeb21f
2 changed files with 49 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM nousresearch/hermes-agent:latest
RUN mkdir -p /opt/data/.hermes
RUN printf 'model:\n provider: ollama-cloud\n default: gemma4:31b-cloud\n' > /opt/data/.hermes/config.yaml
CMD ["hermes", "gateway"]