dev #1

Merged
pi-farm merged 5 commits from dev into main 2026-03-18 00:45:21 +00:00
2 changed files with 14 additions and 8 deletions
Showing only changes of commit 14f8d5d6d8 - Show all commits

View File

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