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 2f827a4 #71

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:1e42bbe2508154c9126d48c2b8a75420c3544343bf86fd041fb7527e017a4b4a 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:3a03fc0826340c7deb82d4755ca391bef5adcedb8892e58412e1a6008199fa91 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:2d0f47e5034542a240f52dd4007891c44e5fd0a13db33e1ae26ee83892d8a1e3 as scw-cli-debug
FROM gcr.io/distroless/base-debian12:debug-nonroot@sha256:2f827a4140eff1ee61dfbab4c6bf8b998980c875b7a7902d3c1c3d915cb12ffa 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