File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
4
4
5
5
RUN apt-get update \
6
6
&& 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 \
8
8
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \
9
9
&& update-ca-certificates
10
10
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ ENV NVIDIA_VISIBLE_DEVICES=all
8
8
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
9
9
10
10
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
13
15
14
16
# build and move deviceQuery to /usr/bin
15
17
RUN mkdir -p /code && \
You can’t perform that action at this time.
0 commit comments