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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENV CGO_ENABLED=0 GOOS=linux
RUN go build -a -ldflags='-w -s' -o synkronus ./cmd/synkronus

# Stage 2: Build the React application (Portal)
FROM node:20-alpine AS portal-builder
FROM node:24-alpine AS portal-builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion synkronus-portal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-stage build for Synkronus Portal
# Stage 1: Build the React application
FROM node:20-alpine AS builder
FROM node:24-alpine AS builder

WORKDIR /app

Expand Down
Loading