16 lines
305 B
Docker
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"]
|