From 64bc1ef7d38ae8c119a06dba0b9b930ecdb007fe Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 8 Jul 2026 16:56:57 +0200 Subject: [PATCH] dockerfile aktualisiert --- dockerfile | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/dockerfile b/dockerfile index dfaf0fc..f226aae 100644 --- a/dockerfile +++ b/dockerfile @@ -1,9 +1,14 @@ FROM quay.io/parkervcp/pterodactyl-images:base_debian +USER root + RUN dpkg --add-architecture i386 && \ - apt update && \ - apt install -y \ - libc6:i386 \ - libgcc-s1:i386 \ - libstdc++6:i386 \ - ca-certificates \ No newline at end of file + apt-get update && \ + apt-get install -y --no-install-recommends \ + libc6:i386 \ + libgcc-s1:i386 \ + libstdc++6:i386 \ + ca-certificates && \ + rm -rf /var/lib/apt/lists/* + +USER container \ No newline at end of file