mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
fix(docker): install procps in Docker image (#7032)
Adds procps to apt-get install in Dockerfile, enabling ps/pgrep/pkill inside the container. Contributed by @HiddenPuppy.
This commit is contained in:
parent
b87e0f59cc
commit
3065e69dc5
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ ENV PYTHONUNBUFFERED=1
|
||||||
# Install system dependencies in one layer, clear APT cache
|
# Install system dependencies in one layer, clear APT cache
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
build-essential nodejs npm python3 python3-pip ripgrep ffmpeg gcc python3-dev libffi-dev && \
|
build-essential nodejs npm python3 python3-pip ripgrep ffmpeg gcc python3-dev libffi-dev procps && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY . /opt/hermes
|
COPY . /opt/hermes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue