feat: add ripgrep and openssh-client in images (#15)

This commit is contained in:
2025-06-24 19:05:30 -06:00
committed by GitHub
parent 5fca51e515
commit e70ec3538b
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
FROM python:3.12-slim FROM python:3.12-slim
LABEL maintainer="team@monadical.com" LABEL maintainer="team@monadical.com"
LABEL description="Goose with MCP servers for Cubbi" LABEL description="Goose for Cubbi"
# Install system dependencies including gosu for user switching and shadow for useradd/groupadd # Install system dependencies including gosu for user switching and shadow for useradd/groupadd
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -17,6 +17,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
nano \ nano \
tmux \ tmux \
git-core \ git-core \
ripgrep \
openssh-client \
vim \ vim \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View File

@@ -1,7 +1,7 @@
FROM python:3.12-slim FROM python:3.12-slim
LABEL maintainer="team@monadical.com" LABEL maintainer="team@monadical.com"
LABEL description="Goose with MCP servers for Cubbi" LABEL description="Opencode for Cubbi"
# Install system dependencies including gosu for user switching and shadow for useradd/groupadd # Install system dependencies including gosu for user switching and shadow for useradd/groupadd
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -17,6 +17,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
nano \ nano \
tmux \ tmux \
git-core \ git-core \
ripgrep \
openssh-client \
vim \ vim \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
@@ -35,6 +37,7 @@ RUN mkdir -p /opt/node && \
rm node.tar.gz rm node.tar.gz
ENV PATH="/opt/node/bin:$PATH" ENV PATH="/opt/node/bin:$PATH"
RUN npm i -g yarn
RUN npm i -g opencode-ai RUN npm i -g opencode-ai
# Create app directory # Create app directory