Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gcr.io/distroless/base-debian12:debug-nonroot Docker digest to a9c1433 #64

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#-------------------
# Download scw
#-------------------
FROM alpine:3.20.3@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d as builder

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (minimal) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (debug) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# renovate: datasource=github-releases depName=scw-cli lookupName=scaleway/scaleway-cli
ARG SCW_VERSION=2.34.0
Expand All @@ -28,7 +28,7 @@
#-------------------
# Minimal image
#-------------------
FROM gcr.io/distroless/static-debian12:nonroot@sha256:42d15c647a762d3ce3a67eab394220f5268915d6ddba9006871e16e4698c3a24 as scw-cli-minimal

Check warning on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (minimal) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (debug) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY --from=builder /bin/scw /bin/scw

Expand All @@ -37,7 +37,7 @@
#-------------------
# Debug image
#-------------------
FROM gcr.io/distroless/base-debian12:debug-nonroot@sha256:1d25fbe82ff696e6149540de475728b85670111a66eb0d4be113a39b8282439d as scw-cli-debug
FROM gcr.io/distroless/base-debian12:debug-nonroot@sha256:a9c14330a664f1d1a549f9772c35eeac3f74828f6fd29530b8cc203103dd8085 as scw-cli-debug

Check warning on line 40 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (minimal) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 40 in Dockerfile

View workflow job for this annotation

GitHub Actions / build (debug) / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY --from=builder /bin/jq /bin/jq
COPY --from=builder /bin/scw /bin/scw
Expand Down