Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle 2015-06-11 10:02:05 -07:00
parent 33f61097bc
commit 4188ae1876
1 changed files with 15 additions and 0 deletions

15
htop/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
# htop in a container
#
# docker run --rm -it \
# --pid host \
# jess/htop
#
FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
htop \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
CMD [ "htop" ]