File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,24 @@ LABEL org.opencontainers.image.authors="Alexander Trost <
[email protected] >
15
15
org.opencontainers.image.version="N/A"
16
16
17
17
RUN apt-get -q update && \
18
- apt-get install -y --no-install-recommends smartmontools nvme-cli jq moreutils git ca-certificates moreutils && \
18
+ apt-get install -y --no-install-recommends \
19
+ ca-certificates \
20
+ git \
21
+ jq \
22
+ moreutils \
23
+ moreutils \
24
+ nvme-cli \
25
+ pciutils \
26
+ smartmontools \
27
+ wget && \
19
28
apt-get clean && \
20
29
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
21
30
mkdir -p /scripts && \
22
31
git clone --depth 1 --branch master --single-branch \
23
32
https://github.com/prometheus-community/node-exporter-textfile-collector-scripts.git \
24
33
/scripts && \
25
- chmod 755 /scripts/*
34
+ chmod 755 /scripts/* && \
35
+ update-pciids -q
26
36
27
37
COPY entrypoint.sh /entrypoint.sh
28
38
You can’t perform that action at this time.
0 commit comments