diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5f3f32d5..2230b2a7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v6 with: - node-version: "22.x" + node-version: "24.x" - name: get yarn cache path id: yarn-cache-dir-path diff --git a/Dockerfile b/Dockerfile index 861a222f..c2241877 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Builder stage -FROM node:22 AS builder +FROM node:24 AS builder # Create app directory WORKDIR /home/node/app @@ -18,7 +18,7 @@ RUN yarn build # Runner stage -FROM node:22-alpine +FROM node:24-alpine ENV NODE_ENV=production WORKDIR /home/node/app