From bdc48fcb53e6f036d2b6b706493551a11f9367b6 Mon Sep 17 00:00:00 2001 From: "info@pi-farm.de" Date: Mon, 22 Jun 2026 11:45:57 +0000 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8b94c91..3985a2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,10 @@ FROM ubuntu:20.04 -ARG MAINTAINER -ARG TZ -ARG APP_NAME -ARG APP_USER - -LABEL maintainer="${MAINTAINER}" -LABEL org.opencontainers.image.title="${APP_NAME}" - -ENV TZ=${TZ} -ENV USER=${APP_USER} +# Non-interactive Mode für apt und Zeitzone setzen +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=Europe/Berlin +# System-Updates und alle benötigten PHP 7.4 Pakete + Tools installieren RUN apt-get update && apt-get install -y \ nginx \ php7.4-fpm \