diff --git a/Dockerfile b/Dockerfile index e5c7f843..1b3498c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get -y --no-install-recommends install build-essential curl ca-certificates libva-dev \ - python3 python-is-python3 ninja-build meson git \ + python3 python-is-python3 ninja-build meson git curl \ && apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \ && update-ca-certificates diff --git a/cuda-ubuntu.dockerfile b/cuda-ubuntu.dockerfile index 86841a32..709cb7c1 100644 --- a/cuda-ubuntu.dockerfile +++ b/cuda-ubuntu.dockerfile @@ -8,8 +8,10 @@ ENV NVIDIA_VISIBLE_DEVICES=all ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video RUN apt-get update \ - && apt-get -y install git \ - && apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* + && apt-get -y --no-install-recommends install build-essential curl ca-certificates libva-dev \ + python3 python-is-python3 ninja-build meson git curl \ + && apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \ + && update-ca-certificates # build and move deviceQuery to /usr/bin RUN mkdir -p /code && \