12 lines
197 B
Docker
12 lines
197 B
Docker
|
|
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"]
|