Files
matrix-show/Dockerfile.hermes
T

12 lines
197 B
Docker
Raw Normal View History

2026-06-04 17:59:53 +08:00
FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir hermes-agent
RUN mkdir -p /root/.hermes/profiles
EXPOSE 11434
CMD ["hermes", "serve", "--host", "0.0.0.0", "--port", "11434"]