fix ARGs in Dockerfiles

This commit is contained in:
2026-02-23 17:45:41 +01:00
parent e76adc3e87
commit 8220db89e1
2 changed files with 16 additions and 6 deletions

View File

@@ -1,8 +1,13 @@
FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
LABEL description="Alpine Baseimage with s6-overlay and lighttpd"
LABEL build_version="Pi-Farm version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Pi-Farm"
ARG BUILD_DATE
ARG BUILD_APP_VERSION
ARG BUILD_MAINTAINER
ARG DESCRIPTION
LABEL description=${DESCRIPTION}
LABEL build_version="${BUILD_MAINTAINER} version: ${BUILD_APP_VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="${BUILD_MAINTAINER}"
RUN apk add --no-cache \
lighttpd \