Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Builder stage

FROM node:22 AS builder
FROM node:24 AS builder

# Create app directory
WORKDIR /home/node/app
Expand All @@ -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

Expand Down