This commit is contained in:
2026-03-17 23:44:15 +01:00
parent 7832b40a01
commit 14f8d5d6d8
2 changed files with 14 additions and 8 deletions

View File

@@ -18,12 +18,15 @@ ARG BUILD_MAINTAINER
LABEL build_version="${BUILD_MAINTAINER} version: ${BUILD_APP_VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="${BUILD_MAINTAINER} version: ${BUILD_APP_VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="${BUILD_MAINTAINER}" LABEL maintainer="${BUILD_MAINTAINER}"
# 1. EPEL und Basis-Tools (shadow-utils ist kritisch für useradd!) # 1. Basis-Setup: Zertifikate und EPEL
RUN microdnf install -y --nodocs \ RUN microdnf install -y --nodocs ca-certificates && \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \ rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
microdnf update -y && \ microdnf update -y && \
microdnf install -y --nodocs \ microdnf install -y --nodocs \
xz tar shadow-utils tzdata && \ xz \
tar \
shadow-utils \
tzdata && \
microdnf clean all microdnf clean all
# add s6 overlay # add s6 overlay

View File

@@ -17,12 +17,15 @@ ARG BUILD_MAINTAINER
LABEL build_version="${BUILD_MAINTAINER} version: ${BUILD_APP_VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="${BUILD_MAINTAINER} version: ${BUILD_APP_VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="${BUILD_MAINTAINER}" LABEL maintainer="${BUILD_MAINTAINER}"
# 1. EPEL und Basis-Tools (shadow-utils ist kritisch für useradd!) # 1. Basis-Setup: Zertifikate und EPEL
RUN microdnf install -y --nodocs \ RUN microdnf install -y --nodocs ca-certificates && \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \ rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
microdnf update -y && \ microdnf update -y && \
microdnf install -y --nodocs \ microdnf install -y --nodocs \
xz tar shadow-utils tzdata && \ xz \
tar \
shadow-utils \
tzdata && \
microdnf clean all microdnf clean all
# 2. S6 Overlay hinzufügen (explizit für aarch64) # 2. S6 Overlay hinzufügen (explizit für aarch64)