summaryrefslogtreecommitdiff
path: root/.docker
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-11 02:51:03 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-11 02:51:03 +0000
commit42551bd2577c7e257a4fc2496c309a40bc6ff7eb (patch)
tree876c5ed85a9070b4d743b2aa29f72eda12fcae7e /.docker
parent105b16bce75dd8868f253c502ff5dc57f9f89313 (diff)
Drop 'PROXY_REGISTRY' in main images to support Dependabot updates.
Diffstat (limited to '.docker')
-rw-r--r--.docker/app/Dockerfile3
-rw-r--r--.docker/web-nginx/Dockerfile3
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