You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
217 B
10 lines
217 B
3 years ago
|
FROM hub.swarmlab.io:5480/venus-admin:latest
|
||
|
|
||
|
ARG USER_NAME
|
||
|
ARG USER_ID
|
||
|
ARG GROUP_ID
|
||
|
ARG GROUP_NAME
|
||
|
|
||
|
RUN addgroup -g ${GROUP_ID} ${GROUP_NAME} && adduser -S ${USER_NAME} -u ${USER_ID} -G ${GROUP_NAME} ${USER_NAME}
|
||
|
|