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