Skip to content

Commit

Permalink
test bumping node version
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Jan 4, 2025
1 parent 35fac4f commit 0c38ea2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pre-build = [
# install nodejs and npm to compile static web resources
# note that architecture could be the same as the container, not $CROSS_DEB_ARCH
# Need to use a fairly old Node.js version to support the old underlying docker image
"curl -fsSL https://deb.nodesource.com/setup_16.x -o nodesource_setup.sh",
"curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh",
"bash nodesource_setup.sh",
"apt-get install -y nodejs",
"node -v",
Expand Down
2 changes: 1 addition & 1 deletion demo/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:alpine as builder
FROM node:23-alpine as builder

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion demo/frontend/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:alpine as builder
FROM node:23-alpine as builder

WORKDIR /usr/src/app

Expand Down

0 comments on commit 0c38ea2

Please sign in to comment.