From 3787227c416670748c9d0eb519ae3b82bfe443f7 Mon Sep 17 00:00:00 2001 From: Daniel Kleine <53251018+d-kleine@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:06:48 +0000 Subject: [PATCH] Updated Dockerfile with following changes: * changed CUDA files to pytorch 2.0.1 (for reproducibility) * fixed RUN command (for updating Ubuntu and installing Git) --- .devcontainer/Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 79e7f40..65829a3 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,10 +1,9 @@ -FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime +FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime -RUN <