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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
###################
# Frontend Build Stage
###################
FROM node:20-alpine AS frontend-builder
FROM node:24-alpine AS frontend-builder

WORKDIR /frontend

Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:24-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS build
FROM node:24-alpine AS build

WORKDIR /app

Expand All @@ -13,7 +13,7 @@ ENV PUBLIC_API_BASE_URL=http://localhost:8000
RUN npm run build

# Runtime Stage
FROM node:20-alpine
FROM node:24-alpine

WORKDIR /app

Expand Down
Loading