We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84b2ff commit 68e063bCopy full SHA for 68e063b
dockers/docker-platform-monitor/Dockerfile.j2
@@ -27,6 +27,7 @@ RUN apt-get update && \
27
python3-jsonschema \
28
libpci3 \
29
iputils-ping \
30
+ pciutils \
31
# smartmontools version should match the installed smartmontools in sonic_debian_extension build template
32
smartmontools=7.2-1
33
@@ -41,6 +42,9 @@ RUN pip3 install grpcio==1.39.0 \
41
42
# Barefoot platform vendors' sonic_platform packages import the Python 'thrift' library
43
RUN pip3 install thrift==0.13.0
44
45
+# We install the libpci module in order to be able to do PCI transactions
46
+RUN pip3 install libpci
47
+
48
{% if docker_platform_monitor_debs.strip() -%}
49
# Copy locally-built Debian package dependencies
50
{{ copy_files("debs/", docker_platform_monitor_debs.split(' '), "/debs/") }}
0 commit comments