Skip to content

Commit 922933c

Browse files
committed
feat: upgrading alpine and kustomize to align with latest flux release
Signed-off-by: Steven Wade <steven@stevenwade.co.uk>
1 parent 52b6134 commit 922933c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM alpine:3.21.2
1+
FROM alpine:3.21.3
22

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

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

7-
ARG KUSTOMIZE=5.4.3
7+
ARG KUSTOMIZE=5.6.0
88
RUN curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE}/kustomize_v${KUSTOMIZE}_linux_amd64.tar.gz | \
99
tar xz && mv kustomize /usr/local/bin/kustomize
1010

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ build:
1616
docker buildx build --build-arg BUILDPLATFORM=$(BUILDPLATFORM) --build-arg TARGETARCH=$(GOARCH) -t local/$(PROJNAME) .
1717

1818
scan: build
19-
trivy --light -s "UNKNOWN,MEDIUM,HIGH,CRITICAL" --exit-code 1 local/$(PROJNAME)
19+
trivy image -s "UNKNOWN,MEDIUM,HIGH,CRITICAL" --exit-code 1 local/$(PROJNAME)

0 commit comments

Comments
 (0)