Skip to content
Open
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
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS builder
FROM node:25-alpine AS builder
WORKDIR /usr/src/app

COPY package.json yarn.lock ./
Expand All @@ -7,7 +7,7 @@ RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build

FROM node:22-alpine
FROM node:25-alpine
WORKDIR /usr/src/app

COPY --from=builder /usr/src/app/.output ./.output
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frontend/Dockerfile.dev
FROM node:22-alpine
FROM node:25-alpine
WORKDIR /usr/src/app

# install dependencies
Expand Down