diff --git a/htop/Dockerfile b/htop/Dockerfile new file mode 100644 index 0000000..4594b73 --- /dev/null +++ b/htop/Dockerfile @@ -0,0 +1,15 @@ +# htop in a container +# +# docker run --rm -it \ +# --pid host \ +# jess/htop +# +FROM debian:sid +MAINTAINER Jessica Frazelle + +RUN apt-get update && apt-get install -y \ + htop \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* + +CMD [ "htop" ]