From b20f7ecdd12039bde65d596ed98f7113ee2b73fe Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Mon, 25 Jul 2022 12:49:29 +0700 Subject: [PATCH] docker_hub_default_pid (#4819) --- hooks/build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hooks/build b/hooks/build index c242d1ab8..8598f66b1 100755 --- a/hooks/build +++ b/hooks/build @@ -10,9 +10,9 @@ set -o pipefail # fail if anything in pipe fails # $(id -u) and $(id -g) will be 0 # # so we need to specify the erigon user uid/gid in the image -# choose 3473 matching defaults in .env.example +# choose 1000 matching defaults in .env.example DOCKER_FLAGS="-t ${IMAGE_NAME}" \ -DOCKER_UID=3473 \ -DOCKER_GID=3473 \ +DOCKER_UID=1000 \ +DOCKER_GID=1000 \ GIT_TAG=$(git describe --tags '--match=v*' --dirty) \ make docker