Skip to content
Open
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
8 changes: 7 additions & 1 deletion docker/skills-init/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ FROM alpine:3.23
ARG PYTHON_UID=1001
ARG PYTHON_GID=1001

RUN apk upgrade --no-cache && apk add --no-cache git
RUN apk upgrade --no-cache && apk add --no-cache git openssh-client

# ssh-keyscan is required by skills-init.sh when an Agent uses SSH-based git
# auth (gitAuthSecretRef -> kubernetes.io/ssh-auth). Verify it is on PATH so a
# future package change cannot silently reintroduce the missing-binary regression.
RUN command -v ssh-keyscan >/dev/null

COPY --from=krane-builder /build/krane /usr/local/bin/krane

# Run as the same UID/GID as the main agent container (python user) so that
Expand Down
Loading