You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM ghcr.io/celestiaorg/celestia-node:${NODE_VERSION} as node
USER root
# Install curl and other necessary packages like wget and tar for downloading and unpacking
RUN apk update && apk add --no-cache curl wget tar
# Install Node Exporter for metrics
ENV NODE_EXPORTER_VERSION=1.7.0
RUN wget https://github.com/prometheus/node_exporter/releases/download/v${NODE_EXPORTER_VERSION}/node_exporter-${NODE_EXPORTER_VERSION}.linux-amd64.tar.gz \
&& tar xvfz node_exporter-${NODE_EXPORTER_VERSION}.linux-amd64.tar.gz \