diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a09ec3..f61c0dc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "24.x" - name: Install modules run: npm install diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fa18284..9c2e40e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "24.x" - name: Install modules run: npm install diff --git a/Dockerfile b/Dockerfile index b8c1878..ed523cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM node:22.21.1-alpine +FROM node:24.13.0-alpine RUN apk add --update python3 make g++\ && rm -rf /var/cache/apk/* diff --git a/Dockerfile.production b/Dockerfile.production index e9e2e1e..c37a5ff 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -1,5 +1,5 @@ # pull official base image -FROM node:22.21.1-alpine +FROM node:24.13.0-alpine # set working directory WORKDIR /app