Skip to content

Commit a709849

Browse files
committed
dnf not microdnf
Signed-off-by: Ryan Cook <[email protected]>
1 parent 9d2376e commit a709849

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

components/runners/claude-code-runner/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ FROM registry.access.redhat.com/ubi9/python-311@sha256:d0b35f779ca0ae87deaf17cd1
33
USER 0
44

55
# Add GitHub CLI repository and install packages
6-
RUN curl -fsSL https://cli.github.com/packages/rpm/gh-cli.repo -o /etc/yum.repos.d/gh-cli.repo && \
7-
microdnf install -y git curl jq gh ca-certificates && \
8-
microdnf clean all
6+
RUN dnf install -y 'dnf-command(config-manager)' && \
7+
dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo && \
8+
dnf install -y gh --repo gh-cli && \
9+
dnf install -y git jq && \
10+
dnf clean all
911

1012
RUN npm install -g @anthropic-ai/claude-code
1113

0 commit comments

Comments
 (0)