From 1ac571181f26b54798cd7dbe2ebf4cf1dd2d7aa9 Mon Sep 17 00:00:00 2001 From: "Peter St. John" Date: Tue, 24 Dec 2024 09:22:07 -0800 Subject: [PATCH] add break system packages calls --- Dockerfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 949fdd06e9..af9e6ab507 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,9 @@ ARG BASE_IMAGE=nvcr.io/nvidia/pytorch:24.12-py3 FROM rust:1.82.0 as rust-env RUN rustup set profile minimal && \ - rustup install 1.82.0 && \ - rustup target add x86_64-unknown-linux-gnu && \ - rustup default 1.82.0 + rustup install 1.82.0 && \ + rustup target add x86_64-unknown-linux-gnu && \ + rustup default 1.82.0 FROM ${BASE_IMAGE} AS bionemo2-base @@ -108,7 +108,8 @@ RUN --mount=type=bind,source=./.git,target=./.git \ --mount=type=bind,source=./requirements-cve.txt,target=/requirements-cve.txt \ <