Skip to content

Commit

Permalink
htop
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 11, 2015
1 parent 33f6109 commit 4188ae1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions htop/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# htop in a container
#
# docker run --rm -it \
# --pid host \
# jess/htop
#
FROM debian:sid
MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
htop \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

CMD [ "htop" ]

0 comments on commit 4188ae1

Please sign in to comment.