From 03854867c477cbf835bbdddf81b2f455486fe6d6 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Aug 2026 05:53:27 +0000 Subject: [PATCH 1/2] Fix Dockerfile lint warnings Give ARG PHP_VERSION a default so the FROM instruction can't resolve to an empty/invalid base image name, and replace the deprecated MAINTAINER instruction with a LABEL. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bba8b95..f749349 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -ARG PHP_VERSION +ARG PHP_VERSION=8.3 FROM php:${PHP_VERSION}-alpine -MAINTAINER eiriksm +LABEL maintainer="eiriksm " ENV COMPOSER_DISCARD_CHANGES=1 ENV COMPOSER_MEMORY_LIMIT=-1 From 8f80e4fb7a5a0c79cb5cd93fe36346c384d716d4 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Aug 2026 05:58:36 +0000 Subject: [PATCH 2/2] Use OCI standard authors label instead of maintainer org.opencontainers.image.authors is the OCI image spec's convention for this metadata, superseding the ad-hoc maintainer label. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f749349..ffb41d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG PHP_VERSION=8.3 FROM php:${PHP_VERSION}-alpine -LABEL maintainer="eiriksm " +LABEL org.opencontainers.image.authors="eiriksm " ENV COMPOSER_DISCARD_CHANGES=1 ENV COMPOSER_MEMORY_LIMIT=-1