feat: add git to docker images for k3s agents

This commit is contained in:
Your Name 2026-04-30 12:21:55 +02:00
parent f1dc078110
commit 2f5b435903
4 changed files with 4 additions and 3 deletions

View file

@ -20,7 +20,7 @@ RUN make build
# ============================================================ # ============================================================
FROM alpine:3.23 FROM alpine:3.23
RUN apk add --no-cache ca-certificates tzdata curl RUN apk add --no-cache ca-certificates tzdata curl git
# Health check # Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \

View file

@ -2,7 +2,7 @@ FROM alpine:3.21
ARG TARGETPLATFORM ARG TARGETPLATFORM
RUN apk add --no-cache ca-certificates tzdata RUN apk add --no-cache ca-certificates tzdata git
COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw
COPY docker/entrypoint.sh /entrypoint.sh COPY docker/entrypoint.sh /entrypoint.sh

View file

@ -2,7 +2,7 @@ FROM alpine:3.21
ARG TARGETPLATFORM ARG TARGETPLATFORM
RUN apk add --no-cache ca-certificates tzdata RUN apk add --no-cache ca-certificates tzdata git
COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw
COPY $TARGETPLATFORM/picoclaw-launcher /usr/local/bin/picoclaw-launcher COPY $TARGETPLATFORM/picoclaw-launcher /usr/local/bin/picoclaw-launcher

View file

@ -36,6 +36,7 @@ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
openssh-client \ openssh-client \
bash \ bash \
git \
tzdata && \ tzdata && \
update-ca-certificates update-ca-certificates