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

feat(container): update image public.ecr.aws/docker/library/alpine #199

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
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 apps/alpine/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "public.ecr.aws/docker/library/alpine",
"version": "3.20.3",
"version": "3.21",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/bazarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION
ARG METAVAR
FROM public.ecr.aws/docker/library/alpine:3.20.3 as builder
FROM public.ecr.aws/docker/library/alpine:3.21.0 as builder

Check warning on line 3 in apps/bazarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (bazarr, stable)

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/

ARG VERSION
ARG METAVAR
Expand All @@ -15,7 +15,7 @@
GOARCH=${TARGETARCH} \
GOARM=${TARGETVARIANT} \
GOPATH=/go
ENV PATH $GOPATH/bin:$PATH

Check warning on line 18 in apps/bazarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (bazarr, stable)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV ENVDIR_VER=v0.1.2

#hadolint ignore=DL3018
Expand All @@ -31,7 +31,7 @@

ARG VERSION
ARG METAVAR
FROM ghcr.io/onedr0p/bazarr${METAVAR}:${VERSION}

Check warning on line 34 in apps/bazarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (bazarr, stable)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/bazarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# hadolint ignore=DL3002
USER root
Expand Down
2 changes: 1 addition & 1 deletion apps/prowlarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION
ARG METAVAR
FROM public.ecr.aws/docker/library/alpine:3.20.3 as builder
FROM public.ecr.aws/docker/library/alpine:3.21.0 as builder

Check warning on line 3 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, stable)

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 3 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, devel)

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 3 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, nightly)

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/

ARG VERSION
ARG METAVAR
Expand All @@ -15,7 +15,7 @@
GOARCH=${TARGETARCH} \
GOARM=${TARGETVARIANT} \
GOPATH=/go
ENV PATH $GOPATH/bin:$PATH

Check warning on line 18 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, stable)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, devel)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, nightly)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV ENVDIR_VER=v0.1.2

#hadolint ignore=DL3018
Expand All @@ -31,7 +31,7 @@

ARG VERSION
ARG METAVAR
FROM ghcr.io/onedr0p/prowlarr${METAVAR}:${VERSION}

Check warning on line 34 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, stable)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/prowlarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 34 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, devel)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/prowlarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 34 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (prowlarr, nightly)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/prowlarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# hadolint ignore=DL3002
USER root
Expand Down
2 changes: 1 addition & 1 deletion apps/radarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION
ARG METAVAR
FROM public.ecr.aws/docker/library/alpine:3.20.3 as builder
FROM public.ecr.aws/docker/library/alpine:3.21.0 as builder

Check warning on line 3 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, stable)

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 3 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, devel)

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 3 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, nightly)

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/

ARG VERSION
ARG METAVAR
Expand All @@ -15,7 +15,7 @@
GOARCH=${TARGETARCH} \
GOARM=${TARGETVARIANT} \
GOPATH=/go
ENV PATH $GOPATH/bin:$PATH

Check warning on line 18 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, stable)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, devel)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, nightly)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV ENVDIR_VER=v0.1.2

#hadolint ignore=DL3018
Expand All @@ -31,7 +31,7 @@

ARG VERSION
ARG METAVAR
FROM ghcr.io/onedr0p/radarr${METAVAR}:${VERSION}

Check warning on line 34 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, stable)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/radarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 34 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, devel)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/radarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 34 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (radarr, nightly)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/radarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# hadolint ignore=DL3002
USER root
Expand Down
2 changes: 1 addition & 1 deletion apps/sonarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION
ARG METAVAR
FROM public.ecr.aws/docker/library/alpine:3.20.3 as builder
FROM public.ecr.aws/docker/library/alpine:3.21.0 as builder

Check warning on line 3 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, stable)

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 3 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, devel)

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/

ARG VERSION
ARG METAVAR
Expand All @@ -15,7 +15,7 @@
GOARCH=${TARGETARCH} \
GOARM=${TARGETVARIANT} \
GOPATH=/go
ENV PATH $GOPATH/bin:$PATH

Check warning on line 18 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, stable)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, devel)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV ENVDIR_VER=v0.1.2

#hadolint ignore=DL3018
Expand All @@ -31,7 +31,7 @@

ARG VERSION
ARG METAVAR
FROM ghcr.io/onedr0p/sonarr${METAVAR}:${VERSION}

Check warning on line 34 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, stable)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/sonarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 34 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / test / Test (sonarr, devel)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/onedr0p/sonarr${METAVAR}:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# hadolint ignore=DL3002
USER root
Expand Down
Loading