mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
11 lines
274 B
Docker
11 lines
274 B
Docker
FROM quay.io/vektorcloud/glibc:latest
|
|
|
|
ARG CTOP_VERSION=0.5
|
|
ENV CTOP_URL https://github.com/bcicen/ctop/releases/download/v${CTOP_VERSION}/ctop-${CTOP_VERSION}-linux-amd64
|
|
|
|
RUN echo $CTOP_URL && \
|
|
wget -q $CTOP_URL -O /ctop && \
|
|
chmod +x /ctop
|
|
|
|
ENTRYPOINT ["/ctop"]
|