containerfiles/htop/Containerfile

13 lines
210 B
Plaintext
Raw Normal View History

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