1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-13 00:38:04 +01:00
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL ()
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

14 lines
198 B
Docker

# 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" ]