"users" command not found in docker container built from alpine

1k views Asked by At

"users" command is not found in docker container built from alpine:latest. How can I install users command?

Thank you.

1

There are 1 answers

0
whites11 On BEST ANSWER

As you can see from this page the users command is provided by the coreutils package. To install it simply run:

apk update && apk add coreutils