Skip to content

Commit 0e7ef48

Browse files
authored
Merge pull request #7 from swade1987/upgrade-image
feat: upgrading alpine and kustomize versions
2 parents dbd723b + 9c9ee68 commit 0e7ef48

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Whitespace-only changes.

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
FROM alpine:3.15.4
1+
FROM alpine:3.21.2
22

33
RUN apk update && apk --no-cache add bash curl git
44

55
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
66

7-
RUN curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv3.8.7/kustomize_v3.8.7_linux_amd64.tar.gz \
8-
| tar xz -C /usr/local/bin
7+
ARG KUSTOMIZE=5.4.3
8+
RUN curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE}/kustomize_v${KUSTOMIZE}_linux_amd64.tar.gz | \
9+
tar xz && mv kustomize /usr/local/bin/kustomize
910

1011
RUN rm -rf /var/cache/apk/*
1112

0 commit comments

Comments
 (0)