Skip to content

Commit 8a8ef7d

Browse files
committed
chore: upgrade build
1 parent c3c953d commit 8a8ef7d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
id: login-ecr
3838
uses: aws-actions/amazon-ecr-login@v1
3939
with:
40-
mask-password: 'true'
40+
mask-password: "true"
4141

4242
# This is a separate action that sets up buildx runner
4343
- name: Setup Docker Buildx
@@ -71,12 +71,12 @@ jobs:
7171
needs: Build
7272
steps:
7373
- name: Git Checkout
74-
uses: actions/checkout@v2
74+
uses: actions/checkout@v6
7575
- name: Echo Branch
7676
run: echo running on branch ${GITHUB_REF##*/}
7777
- uses: actions/setup-node@v4
7878
with:
79-
node-version: 22
79+
node-version: 25
8080
- name: Deploy to server
8181
uses: appleboy/ssh-action@master
8282
with:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install dependencies only when needed
2-
FROM node:24-alpine AS deps
2+
FROM node:25-alpine AS deps
33
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
44
RUN apk add --no-cache libc6-compat
55
WORKDIR /app
@@ -15,7 +15,7 @@ RUN \
1515

1616

1717
# Rebuild the source code only when needed
18-
FROM node:24-alpine AS builder
18+
FROM node:25-alpine AS builder
1919
WORKDIR /app
2020
COPY . .
2121

@@ -34,7 +34,7 @@ RUN yarn build
3434
# RUN npm run build
3535

3636
# Production image, copy all the files and run next
37-
FROM node:24-alpine AS runner
37+
FROM node:25-alpine AS runner
3838
WORKDIR /app
3939

4040
ENV NODE_ENV=production

0 commit comments

Comments
 (0)