From ffdd693ff616290ee6f52f2bd27ca69ca532b012 Mon Sep 17 00:00:00 2001 From: Mathias Zeller <62462901+matoubidou@users.noreply.github.com> Date: Fri, 15 Apr 2022 15:12:08 +0200 Subject: [PATCH] codegen: fix for users with large uids --- script/codegen.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/codegen.Dockerfile b/script/codegen.Dockerfile index 0fafcc942..7915cb798 100644 --- a/script/codegen.Dockerfile +++ b/script/codegen.Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.17 ARG USER=$USER ARG UID=$UID ARG GID=$GID -RUN useradd -m ${USER} --uid=${UID} && echo "${USER}:" chpasswd +RUN useradd -l -m ${USER} --uid=${UID} && echo "${USER}:" chpasswd USER ${UID}:${GID} ARG KUBE_VERSION