entrypoint
Publish Action Image / build (push) Successful in 1m6s

This commit is contained in:
2026-06-05 03:04:39 +10:00
parent 526c97c327
commit 92a3176c6c
+5 -1
View File
@@ -7,4 +7,8 @@ FROM alpine:3.19
COPY --from=builder /app/kforge /usr/local/bin/kforge COPY --from=builder /app/kforge /usr/local/bin/kforge
RUN apk add --no-cache curl && \ RUN apk add --no-cache curl && \
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \ 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 install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]