Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions images/aws/coder-aienv/Dockerfile.noble
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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}"
Expand Down
Loading