mirror of
https://github.com/helm/chart-releaser.git
synced 2026-02-05 09:45:23 +01:00
Bumps the docker group with 1 update: alpine. Updates `alpine` from 3.22 to 3.23 --- updated-dependencies: - dependency-name: alpine dependency-version: '3.23' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
11 lines
203 B
Docker
11 lines
203 B
Docker
FROM alpine:3.23
|
|
|
|
RUN apk --no-cache add ca-certificates git
|
|
|
|
COPY cr /usr/local/bin/cr
|
|
|
|
# Ensure that the binary is available on path and is executable
|
|
RUN cr --help
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/cr" ]
|