From a55304b1dcf77323053a1946522dc0c4d039e605 Mon Sep 17 00:00:00 2001 From: Travis Thurber Date: Tue, 10 Dec 2024 08:59:32 -0800 Subject: [PATCH] update base docker image to sanctioned msdlive base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bb8234608e..42dab71d44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build Stage -FROM quay.io/jupyter/minimal-notebook as builder +FROM ghcr.io/msd-live/jupyter/python-notebook:latest as builder USER root @@ -20,7 +20,7 @@ RUN pip install --upgrade pip RUN pip install naturf # Stage 2: Final Stage -FROM quay.io/jupyter/minimal-notebook +FROM ghcr.io/msd-live/jupyter/python-notebook:latest USER root