Fix path to gosu in entrypoint.sh (#2776)

daba128 changed the Dockerfile to install gosu from the official Ubuntu repositories but did not change the path in entrypoint.sh

gosu ist now located at /usr/sbin/gosu and no longer at /usr/local/bin/gosu
This commit is contained in:
winkelst
2021-09-01 17:39:46 +02:00
committed by GitHub
parent 45360907b3
commit d4919419de
+1 -1
View File
@@ -23,4 +23,4 @@ fi
export HOME=/home/$USER_NAME
exec /usr/local/bin/gosu $USER_NAME "$@"
exec /usr/sbin/gosu $USER_NAME "$@"