dockerfiles/htop/Dockerfile
Jess Frazelle 16293abc90
update htop
Signed-off-by: Jess Frazelle <jess@mesosphere.com>
2016-05-13 15:09:10 -07:00

14 lines
192 B
Docker

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