We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a3c04 commit f70ec9aCopy full SHA for f70ec9a
4 files changed
.github/workflows/ci.yml
@@ -5,7 +5,7 @@ jobs:
5
runs-on: ubuntu-latest
6
services:
7
mongodb:
8
- image: mongo:7
+ image: mongo:8
9
ports:
10
- 27018:27017
11
steps:
@@ -14,7 +14,7 @@ jobs:
14
- name: Install Node.js
15
uses: actions/setup-node@v3
16
with:
17
- node-version: '22'
+ node-version: '25'
18
check-latest: true
19
- name: Install dependencies
20
run: npm install
docker/Dockerfile
@@ -1,11 +1,11 @@
1
-FROM node:24-alpine as builder
+FROM node:25-alpine as builder
2
WORKDIR /build
3
COPY package.json ./
4
COPY package-lock.json ./
ARG NPM_TOKEN
ENV NPM_TOKEN $NPM_TOKEN
RUN npm ci --only=production --ignore-scripts
-FROM node:24-alpine
+FROM node:25-alpine
RUN apk update && apk add --no-cache dumb-init
ENV HOME=/home/app
ENV APP_HOME=$HOME/node/
0 commit comments