Skip to content

Commit f70ec9a

Browse files
committed
upgrade node ver. & misc dependencies
1 parent 89a3c04 commit f70ec9a

4 files changed

Lines changed: 479 additions & 386 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
services:
77
mongodb:
8-
image: mongo:7
8+
image: mongo:8
99
ports:
1010
- 27018:27017
1111
steps:
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Node.js
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: '22'
17+
node-version: '25'
1818
check-latest: true
1919
- name: Install dependencies
2020
run: npm install

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM node:24-alpine as builder
1+
FROM node:25-alpine as builder
22
WORKDIR /build
33
COPY package.json ./
44
COPY package-lock.json ./
55
ARG NPM_TOKEN
66
ENV NPM_TOKEN $NPM_TOKEN
77
RUN npm ci --only=production --ignore-scripts
8-
FROM node:24-alpine
8+
FROM node:25-alpine
99
RUN apk update && apk add --no-cache dumb-init
1010
ENV HOME=/home/app
1111
ENV APP_HOME=$HOME/node/

0 commit comments

Comments
 (0)