Skip to content

Commit

Permalink
Update to the latest toolchain.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed May 1, 2024
1 parent aff3d44 commit dcf0dd9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand All @@ -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}"

0 comments on commit dcf0dd9

Please sign in to comment.