From 6cbd9951db12079a37cde239d2a7b9369c80620d Mon Sep 17 00:00:00 2001 From: fredericpoitevin Date: Tue, 22 Aug 2023 16:21:23 -0700 Subject: [PATCH] Workflows still fail due to space limitations in GH Actions. Trying to build from pytorch runtime image (2.76GB) instead of devel (6.59GB). --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6c4ef94..518ff97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official pytorch runtime as a parent image -FROM pytorch/pytorch:1.12.0-cuda11.3-cudnn8-devel +FROM pytorch/pytorch:1.12.0-cuda11.3-cudnn8-runtime MAINTAINER Youssef Nashed "ynashed@slac.stanford.edu"