Skip to content
This repository was archived by the owner on Jun 25, 2026. It is now read-only.

Commit 60aaf4e

Browse files
committed
build(runner): clean up Dockerfile
1 parent c690624 commit 60aaf4e

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

runner/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ ARG GO_VERSION=1.26.0
66
ARG GOOSE_VERSION=1.26.1
77

88
RUN apt-get update && apt-get install -y --no-install-recommends \
9-
ca-certificates curl git gh bash jq ripgrep make gcc g++ openssl bzip2 libxcb1 \
10-
python3 python3-pip gnupg \
9+
ca-certificates curl gnupg bzip2 xz-utils zip unzip \
10+
git gh \
11+
bash jq ripgrep make patch diffutils file less \
12+
python3 \
1113
&& rm -rf /var/lib/apt/lists/*
1214

1315
RUN set -eux; \
@@ -24,15 +26,13 @@ RUN set -eux; \
2426
rm -f /tmp/go.tar.gz
2527

2628
RUN curl -fsSL "https://deb.nodesource.com/setup_${NODE_MAJOR}.x" | bash - \
29+
&& apt-get update \
2730
&& apt-get install -y --no-install-recommends nodejs \
31+
&& npm install -g @openai/codex \
2832
&& node --version \
29-
&& npm --version \
33+
&& codex --version \
3034
&& rm -rf /var/lib/apt/lists/*
3135

32-
# Expected to provide `codex` in PATH.
33-
# If your environment uses a different package name/version, adjust this line.
34-
RUN npm install -g @openai/codex
35-
3636
RUN set -eux; \
3737
arch="$(dpkg --print-architecture)"; \
3838
case "${arch}" in \

0 commit comments

Comments
 (0)