From 4ecc1c45c32e680adf5e61aec741d07f037fdba3 Mon Sep 17 00:00:00 2001 From: Jullian Pepito Date: Sun, 14 Jun 2026 15:34:25 -0700 Subject: [PATCH] chore: remove AgentAPI, Goose, and other comments --- images/aws/coder-aienv/Dockerfile.noble | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/images/aws/coder-aienv/Dockerfile.noble b/images/aws/coder-aienv/Dockerfile.noble index 666bde3..cfdb807 100644 --- a/images/aws/coder-aienv/Dockerfile.noble +++ b/images/aws/coder-aienv/Dockerfile.noble @@ -15,12 +15,12 @@ RUN apt update && \ RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \ curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /etc/apt/keyrings/githubcli-archive-keyring.gpg -# Add Apt repos +# Add apt repos RUN echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \ echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list && \ add-apt-repository "ppa:git-core/ppa" -# Update Apt +# Update apt RUN apt update -y # Install baseline packages @@ -48,8 +48,8 @@ RUN curl -fsSL https://go.dev/dl/go1.25.9.linux-amd64.tar.gz | tar -C /usr/local RUN rm -rf /var/lib/apt/lists/* # Install Coder's AgentAPI -RUN curl -fsSL https://github.com/coder/agentapi/releases/latest/download/agentapi-linux-amd64 | tee /usr/local/bin/agentapi >/dev/null && \ - chmod +x /usr/local/bin/agentapi +# RUN curl -fsSL https://github.com/coder/agentapi/releases/latest/download/agentapi-linux-amd64 | tee /usr/local/bin/agentapi >/dev/null && \ +# chmod +x /usr/local/bin/agentapi # Install Coder Boundary # RUN curl -fsSL https://raw.githubusercontent.com/coder/boundary/main/install.sh | bash @@ -83,7 +83,7 @@ ARG PLAYWRIGHT_VER=latest ARG DESKTOP_COMMANDER_VER=latest ARG HTTP_SERVER_VER=latest ARG CLAUDE_CODE_VER=latest -ARG GOOSE_VERSION="" +# ARG GOOSE_VERSION="" ARG CURSOR_VERSION=latest ARG MUX_VERSION=latest ARG KIRO_VERSION=latest @@ -110,9 +110,9 @@ RUN curl https://cursor.com/install -fsS | bash 2>&1 && \ rm -rf $HOME/.local/bin/cursor-agent || true # Install Goose -RUN curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | GOOSE_VERSION=$GOOSE_VERSION CONFIGURE=false bash && \ - sudo mv $(readlink -f $(which goose)) /usr/local/bin/goose && \ - rm -rf $HOME/.local/bin/goose || true +# RUN curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | GOOSE_VERSION=$GOOSE_VERSION CONFIGURE=false bash && \ +# sudo mv $(readlink -f $(which goose)) /usr/local/bin/goose && \ +# rm -rf $HOME/.local/bin/goose || true # Install Coder Mux Web Server RUN sudo npm install -g --no-audit --no-fund --omit=dev --ignore-scripts "mux@${MUX_VERSION}"