Merge pull request #602 from weaveworks/dependabot/docker/cmd/kured/alpine-3.16.1

build(deps): bump alpine from 3.16.0 to 3.16.1 in /cmd/kured
This commit is contained in:
Daniel Holbach
2022-07-22 17:45:38 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:3.16.0
FROM alpine:3.16.1
RUN apk update --no-cache && apk upgrade --no-cache && apk add --no-cache ca-certificates tzdata
COPY ./kured /usr/bin/kured
ENTRYPOINT ["/usr/bin/kured"]
+1 -1
View File
@@ -14,7 +14,7 @@ RUN go mod download
COPY . .
RUN make kured-multi
FROM --platform=$TARGETPLATFORM alpine:3.16.0 as bin
FROM --platform=$TARGETPLATFORM alpine:3.16.1 as bin
RUN apk update --no-cache && apk upgrade --no-cache && apk add --no-cache ca-certificates tzdata
COPY --from=build /src/cmd/kured/kured /usr/bin/kured
ENTRYPOINT ["/usr/bin/kured"]