Skip to content

Commit

Permalink
fix(container): update image ghcr.io/deedee-ops/alpine to v3.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
robodexo2000[bot] authored Feb 14, 2025
1 parent 1839980 commit 9ada1ca
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion apps/authelia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/authelia/authelia:${VERSION} as source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/bitmagnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/bitmagnet-io/bitmagnet:v${VERSION} AS source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/csp-exporter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache --update bash git \
&& git clone --branch "v${VERSION}" https://git.benburwell.com/csp_exporter . \
&& bash -c 'IFS=/ read -r GOOS GOARCH <<< "${TARGETPLATFORM}" && go build -o csp_exporter main.go'

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ENV COLLECTOR_BIND_ADDR=0.0.0.0:8000
ENV PROM_BIND_ADDR=0.0.0.0:9477
Expand Down
2 changes: 1 addition & 1 deletion apps/davis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/deedee-ops/alpine:3.21.2 AS source
FROM ghcr.io/deedee-ops/alpine:3.21.3 AS source

FROM ghcr.io/tchapi/davis:${VERSION}

Check warning on line 5 in apps/davis/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (davis, stable)

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

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

Expand Down
2 changes: 1 addition & 1 deletion apps/gokapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM f0rc3/gokapi:v${VERSION} as source

Check warning on line 3 in apps/gokapi/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (gokapi, 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/

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/gose/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/stv0g/gose:v${VERSION} AS source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/home-assistant/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM ghcr.io/deedee-ops/alpine:3.21.2 as builder
FROM ghcr.io/deedee-ops/alpine:3.21.3 as builder

Check warning on line 2 in apps/home-assistant/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (home-assistant, 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/

FROM ghcr.io/onedr0p/home-assistant:${VERSION}

Check warning on line 4 in apps/home-assistant/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (home-assistant, stable)

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

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

Expand Down
2 changes: 1 addition & 1 deletion apps/invidious/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM quay.io/invidious/invidious:latest@sha256:6ecb13e4e881887baf21409b323418b8af7780ef6ffd1b9cf3fb0fb441290833 AS source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/jellystat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/lldap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/lldap/lldap:${VERSION} as source

Check warning on line 3 in apps/lldap/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (lldap, 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/lldap/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (lldap, stable)

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

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

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/maddy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/foxcpp/maddy:${VERSION} as source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/memos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/usememos/memos:${VERSION} as source

Check warning on line 3 in apps/memos/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (memos, 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/memos/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (memos, stable)

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

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

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/miniflux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/miniflux/miniflux:${VERSION} as source

Check warning on line 3 in apps/miniflux/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (miniflux, stable)

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

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/miniflux/miniflux:${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 3 in apps/miniflux/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (miniflux, 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/

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/miniserve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM svenstaro/miniserve:${VERSION}-alpine as source

Check warning on line 3 in apps/miniserve/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (miniserve, 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/miniserve/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (miniserve, stable)

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

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

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/navidrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/navidrome/navidrome:${VERSION} as source

Check warning on line 3 in apps/navidrome/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (navidrome, 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/navidrome/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (navidrome, stable)

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

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

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/offlineimap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/roundcube/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/script-exporter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG VERSION
FROM ricoberger/script_exporter:v${VERSION} as source

Check warning on line 3 in apps/script-exporter/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (script-exporter, 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/
FROM docker.io/bitnami/kubectl:1.32.2 as kubectl

Check warning on line 4 in apps/script-exporter/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (script-exporter, 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/

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/syncthing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM syncthing/syncthing:${VERSION} as source

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/talosctl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/wakapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/muety/wakapi:${VERSION} as source

Check warning on line 3 in apps/wakapi/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (wakapi, 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/wakapi/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (wakapi, stable)

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

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

FROM ghcr.io/deedee-ops/alpine:3.21.2
FROM ghcr.io/deedee-ops/alpine:3.21.3

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/wallos/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG TARGETPLATFORM
ARG VERSION
FROM ghcr.io/deedee-ops/alpine:3.21.2 AS source
FROM ghcr.io/deedee-ops/alpine:3.21.3 AS source

WORKDIR /app

Expand Down

0 comments on commit 9ada1ca

Please sign in to comment.