build(deps): bump alpine from 3.16.1 to 3.16.2 in /cmd/kured (#617)

Bumps alpine from 3.16.1 to 3.16.2.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2022-08-10 06:20:13 +02:00
committed by GitHub
parent ad781ad6f0
commit 9d4ebfc1f8
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM alpine:3.16.1
FROM alpine:3.16.2
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"]

View File

@@ -14,7 +14,7 @@ RUN go mod download
COPY . .
RUN make kured-multi
FROM --platform=$TARGETPLATFORM alpine:3.16.1 as bin
FROM --platform=$TARGETPLATFORM alpine:3.16.2 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"]