From 15317a45ffabc748bc845023382dc219ee153aec Mon Sep 17 00:00:00 2001 From: Lukas Grossar Date: Wed, 29 Apr 2020 15:20:01 +0200 Subject: [PATCH] :sparkles: (Dockerfile) Switched to numeric user id in Dockerfile Running the container under a restricted Pod Security Policy requires a numeric userid --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2c4d0f..2a4d113 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ FROM scratch COPY potz-holzoepfel-und-zipfelchape / COPY etc/passwd /etc/passwd -USER nobody +USER 65534 ENTRYPOINT ["/potz-holzoepfel-und-zipfelchape"]