feat: add git to docker images for k3s agents
This commit is contained in:
parent
f1dc078110
commit
2f5b435903
4 changed files with 4 additions and 3 deletions
|
|
@ -20,7 +20,7 @@ RUN make build
|
|||
# ============================================================
|
||||
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
|
||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ FROM alpine:3.21
|
|||
|
||||
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 docker/entrypoint.sh /entrypoint.sh
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ FROM alpine:3.21
|
|||
|
||||
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-launcher /usr/local/bin/picoclaw-launcher
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ RUN apk add --no-cache \
|
|||
ca-certificates \
|
||||
openssh-client \
|
||||
bash \
|
||||
git \
|
||||
tzdata && \
|
||||
update-ca-certificates
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue