From 92a3176c6c3d1bcc43af1f952e5f09d952eadc66 Mon Sep 17 00:00:00 2001 From: Nathanial Lubitz Date: Fri, 5 Jun 2026 03:04:39 +1000 Subject: [PATCH] entrypoint --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 803697d..85b95a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,8 @@ FROM alpine:3.19 COPY --from=builder /app/kforge /usr/local/bin/kforge 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" && \ - install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \ No newline at end of file + 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"] \ No newline at end of file