From 1528c2c89d285f05334dd9b6cee4221373dfc853 Mon Sep 17 00:00:00 2001 From: Pascal Andy Date: Tue, 26 Nov 2024 12:48:10 -0500 Subject: [PATCH] Add the backwards compatibility with the official dockerfile from dockerhub --- v5/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v5/Dockerfile b/v5/Dockerfile index c6f5283a..f49d0e8b 100755 --- a/v5/Dockerfile +++ b/v5/Dockerfile @@ -77,6 +77,9 @@ RUN set -eux; \ gosu --version; \ gosu nobody true +# Add the backwards compatibility with the official dockerfile from dockerhub +RUN set -eux; ln -svf gosu /usr/local/bin/su-exec; su-exec nobody true + # Add bash and set timezone RUN apk add --no-cache bash curl tzdata && \ cp /usr/share/zoneinfo/America/New_York /etc/localtime && \