From 3c6103a4289b044bf48bafc4b8cf73633e71f944 Mon Sep 17 00:00:00 2001 From: h0ngcha0 Date: Wed, 28 Aug 2024 14:01:03 +0200 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26a9cfa..4123d7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,17 @@ -FROM nvidia/cuda:11.0-devel-ubuntu20.04 AS builder +FROM nvidia/cuda:11.0.3-devel-ubuntu20.04 AS builder WORKDIR /src RUN apt update && \ - DEBIAN_FRONTEND="noninteractive" apt-get -y install cmake tzdata + DEBIAN_FRONTEND="noninteractive" apt-get -y install cmake tzdata curl -RUN curl -L https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb -o out.deb && \ - DEBIAN_FRONTEND=sudo apt-get -y install ./out.deb +RUN curl -L https://github.com/conan-io/conan/releases/download/1.65.0/conan-ubuntu-64.deb -o out.deb && \ + DEBIAN_FRONTEND=sudo apt-get -y install ./out.deb COPY ./ ./ RUN ./make.sh -FROM nvidia/cuda:11.0-base +FROM nvidia/cuda:11.0.3-base-ubuntu20.04 RUN apt update && \ DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata