Files
hermes-workspace/docker/agent/Dockerfile
2026-05-01 10:55:01 -04:00

16 lines
305 B
Docker

FROM python:3.11-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl git \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/outsourc-e/hermes-agent.git /app
WORKDIR /app
RUN pip install --no-cache-dir -e .
EXPOSE 8642
CMD ["claude", "gateway", "run"]