containerfiles/htop/Containerfile
2022-02-15 20:42:32 -06:00

13 lines
207 B
Docker

# htop in podman container
#
# podman run --rm -it \
# --pid host
# htop
#
FROM alpine:latest
LABEL maintainer "Jeffrey Serio <hyperreal@unixcat.coffee>"
RUN apk --no-cache add htop
CMD [ "htop" ]