use bash instead
Publish Action Image / build (push) Successful in 1m22s

This commit is contained in:
2026-06-05 03:59:20 +10:00
parent 699a2ddd2c
commit 188453d534
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ RUN go build -o kforge .
FROM alpine:3.19
COPY --from=builder /app/kforge /usr/local/bin/kforge
RUN apk add --no-cache curl docker-cli && \
RUN apk add --no-cache curl bash docker-cli && \
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
COPY entrypoint.sh /entrypoint.sh