Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.
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
13 changes: 9 additions & 4 deletions infra/docker/Dockerfile.agent
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL org.opencontainers.image.source="https://github.com/ErichHubert/bugarena"

ARG DEBIAN_FRONTEND=noninteractive
ARG MISE_VERSION=v2025.11.11
ARG CODEX_VERSION=0.116.0
ARG CODEX_VERSION=latest

RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl gpg xz-utils \
Expand Down Expand Up @@ -57,10 +57,15 @@ RUN apt-get update \
wget \
zip \
zlib1g-dev \
&& curl -fsSL https://mise.run \
| MISE_INSTALL_PATH=/usr/local/bin/mise MISE_VERSION=${MISE_VERSION} sh \
&& if [ "${MISE_VERSION}" = "latest" ]; then \
curl -fsSL https://mise.run \
| MISE_INSTALL_PATH=/usr/local/bin/mise MISE_INSTALL_FROM_GITHUB=1 sh; \
else \
curl -fsSL https://mise.run \
| MISE_INSTALL_PATH=/usr/local/bin/mise MISE_INSTALL_FROM_GITHUB=1 MISE_VERSION="${MISE_VERSION}" sh; \
fi \
&& corepack enable \
&& npm install --global @openai/codex@${CODEX_VERSION} \
&& npm install --global "@openai/codex@${CODEX_VERSION}" \
&& ln -sf /usr/bin/fdfind /usr/local/bin/fd \
&& useradd --create-home --shell /bin/bash agent \
&& install -m 0755 -d /opt/codex-agent \
Expand Down
Loading