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

1.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 best solutions below

0
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