From dcf0dd91f324a79db80d669b0b732526007938c9 Mon Sep 17 00:00:00 2001 From: LTLA Date: Tue, 30 Apr 2024 22:26:33 -0700 Subject: [PATCH] Update to the latest toolchain. --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff1c72f..f668775 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/ltla/emcmake-docker/builder:2023-07-17 +FROM ghcr.io/ltla/emcmake-docker/builder:2024-04-30 RUN git clone https://github.com/kanaverse/scran.js && \ cd scran.js && \ @@ -14,9 +14,11 @@ ENV PATH="/emsdk/node/16.20.0_64bit/bin:${FINALPATH}" RUN npm i --include=dev && \ git checkout -- package.json -# Running the builds. -RUN ./build.sh main -RUN ./build.sh browser +# Running the builds, but not stopping if there's an error; this allows us to +# at least handle all of the setup for the actual build if the current HEAD is +# not compatible with the tooling that we have on this image. +RUN ./build.sh main; exit 0 +RUN ./build.sh browser; exit 0 # Removing Node from the path. ENV PATH="${FINALPATH}"