mirror of
https://codeberg.org/hyperreal/containerfiles
synced 2024-11-01 16:43:10 +01:00
13 lines
207 B
Docker
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" ]
|