Skip to content

Commit

Permalink
Pre-install Node in ci/cd image
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed Oct 21, 2023
1 parent b67f988 commit 2db2525
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/runner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ RUN cargo install wasm-pack
RUN cargo install worker-build --version 0.0.10 --force

RUN rustup target add wasm32-unknown-unknown

RUN apt-get update && \
apt-get install -y curl software-properties-common

RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -

RUN apt-get install -y nodejs

0 comments on commit 2db2525

Please sign in to comment.