We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ef7fc commit fe278fbCopy full SHA for fe278fb
dockers/docker-platform-monitor/Dockerfile.j2
@@ -26,7 +26,8 @@ RUN apt-get update && \
26
i2c-tools \
27
psmisc \
28
python3-jsonschema \
29
- libpci3
+ libpci3 \
30
+ pciutils
31
32
# TODO: Remove these lines once we no longer need Python 2
33
RUN apt-get install -f -y python-dev python-pip
@@ -48,6 +49,9 @@ RUN pip2 install enum34
48
49
RUN pip2 install thrift==0.13.0
50
RUN pip3 install thrift==0.13.0
51
52
+# We install the libpci module in order to be able to do PCI transactions
53
+RUN pip3 install libpci
54
+
55
{% if docker_platform_monitor_debs.strip() -%}
56
# Copy locally-built Debian package dependencies
57
{{ copy_files("debs/", docker_platform_monitor_debs.split(' '), "/debs/") }}
0 commit comments