From 105b16bce75dd8868f253c502ff5dc57f9f89313 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Sat, 11 Oct 2025 02:40:31 +0000 Subject: Add 'docker' and 'github-actions' to Dependabot config. --- .docker/app/Dockerfile | 2 +- .docker/web-nginx/Dockerfile | 2 +- .github/dependabot.yml | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index 09535eeee..35d2ab90e 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -1,6 +1,6 @@ ARG PROXY_REGISTRY -FROM ${PROXY_REGISTRY}alpine:3.22 +FROM ${PROXY_REGISTRY}alpine:3.22.2 EXPOSE 9000/tcp ARG ALPINE_MIRROR diff --git a/.docker/web-nginx/Dockerfile b/.docker/web-nginx/Dockerfile index 012f476f0..16b3821db 100644 --- a/.docker/web-nginx/Dockerfile +++ b/.docker/web-nginx/Dockerfile @@ -1,5 +1,5 @@ ARG PROXY_REGISTRY -FROM ${PROXY_REGISTRY}nginx:alpine +FROM ${PROXY_REGISTRY}nginx:1.29.2-alpine HEALTHCHECK CMD curl --fail http://localhost${APP_BASE}/index.php || exit 1 diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2eabf5f16..f1ad1d7de 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,21 @@ updates: directory: / schedule: interval: weekly + commit-message: + prefix: 'Composer:' + +- package-ecosystem: docker + directories: + - /.docker/app + - /.docker/web-nginx + schedule: + interval: weekly + commit-message: + prefix: 'Docker:' + +- package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + commit-message: + prefix: 'GitHub Actions:' -- cgit v1.2.3-54-g00ecf From 42551bd2577c7e257a4fc2496c309a40bc6ff7eb Mon Sep 17 00:00:00 2001 From: supahgreg Date: Sat, 11 Oct 2025 02:51:03 +0000 Subject: Drop 'PROXY_REGISTRY' in main images to support Dependabot updates. --- .docker/app/Dockerfile | 3 +-- .docker/web-nginx/Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index 35d2ab90e..4abd0f3cd 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -1,6 +1,5 @@ -ARG PROXY_REGISTRY +FROM alpine:3.22.2 -FROM ${PROXY_REGISTRY}alpine:3.22.2 EXPOSE 9000/tcp ARG ALPINE_MIRROR diff --git a/.docker/web-nginx/Dockerfile b/.docker/web-nginx/Dockerfile index 16b3821db..3c7b42e2d 100644 --- a/.docker/web-nginx/Dockerfile +++ b/.docker/web-nginx/Dockerfile @@ -1,5 +1,4 @@ -ARG PROXY_REGISTRY -FROM ${PROXY_REGISTRY}nginx:1.29.2-alpine +FROM nginx:1.29.2-alpine HEALTHCHECK CMD curl --fail http://localhost${APP_BASE}/index.php || exit 1 -- cgit v1.2.3-54-g00ecf