Skip to content

Commit

Permalink
Bump NodeJS version
Browse files Browse the repository at this point in the history
  • Loading branch information
moreal committed Oct 24, 2024
1 parent 3cdc346 commit dba7ac6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
cache: 'yarn'

- name: Install
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.4 AS build-env
FROM node:22.10 AS build-env

COPY . /build
WORKDIR /build
Expand All @@ -7,7 +7,7 @@ RUN yarn compile
RUN wget https://github.com/TryGhost/node-sqlite3/releases/download/v5.1.2/napi-v6-linux-musl-x64.tar.gz && tar -xvzf napi-v6-linux-musl-x64.tar.gz
RUN mv ./napi-v6-linux-musl-x64 /build/node_modules/sqlite3/lib/binding

FROM node:20.4
FROM node:22.10

COPY --from=build-env /build/prisma /app/prisma
COPY --from=build-env /build/dist /app
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ As name suggests, this app bridges assets between Nine Chronicles networks.

## Prerequisites

- Node.js v19.7.0+
- Node.js v22.10.0+
- yarn 4.5.1+

## Build and Run
Expand Down

0 comments on commit dba7ac6

Please sign in to comment.