"users" command is not found in docker container built from alpine:latest. How can I install users command?
Thank you.
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
As you can see from this page the users command is provided by the coreutils package. To install it simply run: