📅  最后修改于: 2022-03-11 14:51:28.389000             🧑  作者: Mango
# To create a non root group and user inside your Alpine based Dockerfile
# -g is the GID
addgroup -g 1000 groupname
# -u is the UID
# -D permits to create an user without password
adduser -u 1000 -G groupname -h /home/username -D username