Skip to content

Commit dcf0dd9

Browse files
committed
Update to the latest toolchain.
1 parent aff3d44 commit dcf0dd9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Dockerfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/ltla/emcmake-docker/builder:2023-07-17
1+
FROM ghcr.io/ltla/emcmake-docker/builder:2024-04-30
22

33
RUN git clone https://github.com/kanaverse/scran.js && \
44
cd scran.js && \
@@ -14,9 +14,11 @@ ENV PATH="/emsdk/node/16.20.0_64bit/bin:${FINALPATH}"
1414
RUN npm i --include=dev && \
1515
git checkout -- package.json
1616

17-
# Running the builds.
18-
RUN ./build.sh main
19-
RUN ./build.sh browser
17+
# Running the builds, but not stopping if there's an error; this allows us to
18+
# at least handle all of the setup for the actual build if the current HEAD is
19+
# 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
2022

2123
# Removing Node from the path.
2224
ENV PATH="${FINALPATH}"

0 commit comments

Comments
 (0)