mirror of
https://github.com/kubereboot/kured.git
synced 2026-08-18 02:46:17 +00:00
Bumps alpine from 3.24.0 to 3.24.1. --- updated-dependencies: - dependency-name: alpine dependency-version: 3.24.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
8 lines
283 B
Docker
8 lines
283 B
Docker
FROM alpine:3.24.1@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN apk update --no-cache && apk upgrade --no-cache && apk add --no-cache ca-certificates tzdata
|
|
COPY ${TARGETPLATFORM}/kured /usr/bin/kured
|
|
ENTRYPOINT ["/usr/bin/kured"]
|