Skip to content

Commit 3200a66

Browse files
authored
fix: gpu fetch device info (#2403)
* fix: gpu fetch device info Signed-off-by: Sertac Ozercan <[email protected]> * use pciutils package Signed-off-by: Sertac Ozercan <[email protected]> --------- Signed-off-by: Sertac Ozercan <[email protected]>
1 parent b90cdce commit 3200a66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ ENV BUILD_TYPE=${BUILD_TYPE}
107107
RUN if [ "${BUILD_TYPE}" = "cublas" ]; then \
108108
apt-get update && \
109109
apt-get install -y --no-install-recommends \
110-
software-properties-common && \
110+
software-properties-common pciutils && \
111111
curl -O https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb && \
112112
dpkg -i cuda-keyring_1.1-1_all.deb && \
113113
rm -f cuda-keyring_1.1-1_all.deb && \
@@ -355,7 +355,7 @@ RUN mkdir -p /build/models
355355
# Define the health check command
356356
HEALTHCHECK --interval=1m --timeout=10m --retries=10 \
357357
CMD curl -f ${HEALTHCHECK_ENDPOINT} || exit 1
358-
358+
359359
VOLUME /build/models
360360
EXPOSE 8080
361361
ENTRYPOINT [ "/build/entrypoint.sh" ]

0 commit comments

Comments
 (0)