dockerfiles/htop/Dockerfile

14 lines
198 B
Docker
Raw Permalink Normal View History

# htop in a container
#
# docker run --rm -it \
# --pid host \
# jess/htop
#
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk --no-cache add \
htop
CMD [ "htop" ]