We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff3d44 commit dcf0dd9Copy full SHA for dcf0dd9
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ghcr.io/ltla/emcmake-docker/builder:2023-07-17
+FROM ghcr.io/ltla/emcmake-docker/builder:2024-04-30
2
3
RUN git clone https://github.com/kanaverse/scran.js && \
4
cd scran.js && \
@@ -14,9 +14,11 @@ ENV PATH="/emsdk/node/16.20.0_64bit/bin:${FINALPATH}"
14
RUN npm i --include=dev && \
15
git checkout -- package.json
16
17
-# Running the builds.
18
-RUN ./build.sh main
19
-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.
20
+RUN ./build.sh main; exit 0
21
+RUN ./build.sh browser; exit 0
22
23
# Removing Node from the path.
24
ENV PATH="${FINALPATH}"
0 commit comments