containerfiles/htop/Containerfile
2022-07-23 17:30:09 -05:00

13 lines
210 B
Docker

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