We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d2376e commit a709849Copy full SHA for a709849
components/runners/claude-code-runner/Dockerfile
@@ -3,9 +3,11 @@ FROM registry.access.redhat.com/ubi9/python-311@sha256:d0b35f779ca0ae87deaf17cd1
3
USER 0
4
5
# 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
+RUN dnf install -y 'dnf-command(config-manager)' && \
+ dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo && \
+ dnf install -y gh --repo gh-cli && \
9
+ dnf install -y git jq && \
10
+ dnf clean all
11
12
RUN npm install -g @anthropic-ai/claude-code
13
0 commit comments