Compare commits

...

2 Commits

Author SHA1 Message Date
cb21996691 Merge branch 'main' of https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd
All checks were successful
/ release-and-build (push) Successful in 26s
2026-02-23 17:49:50 +01:00
8220db89e1 fix ARGs in Dockerfiles 2026-02-23 17:45:41 +01:00
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 FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
LABEL description="Alpine Baseimage with s6-overlay and lighttpd" ARG BUILD_DATE
LABEL build_version="Pi-Farm version:- ${VERSION} Build-date:- ${BUILD_DATE}" ARG BUILD_APP_VERSION
LABEL maintainer="Pi-Farm" 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 \ RUN apk add --no-cache \
lighttpd \ lighttpd \

View File

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