Skip to content

Commit 6fd6322

Browse files
author
Markus Perl
committed
Cuda upgrade
1 parent bb0ce43 commit 6fd6322

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
44

55
RUN apt-get update \
66
&& apt-get -y --no-install-recommends install build-essential curl ca-certificates libva-dev \
7-
python3 python-is-python3 ninja-build meson git \
7+
python3 python-is-python3 ninja-build meson git curl \
88
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \
99
&& update-ca-certificates
1010

cuda-ubuntu.dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ ENV NVIDIA_VISIBLE_DEVICES=all
88
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
99

1010
RUN apt-get update \
11-
&& apt-get -y install git \
12-
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
11+
&& apt-get -y --no-install-recommends install build-essential curl ca-certificates libva-dev \
12+
python3 python-is-python3 ninja-build meson git curl \
13+
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \
14+
&& update-ca-certificates
1315

1416
# build and move deviceQuery to /usr/bin
1517
RUN mkdir -p /code && \

0 commit comments

Comments
 (0)