feat: Marketing site
Server Deploy / deploy (push) Successful in 5m51s

This commit is contained in:
2026-07-22 16:50:13 +01:00
parent 7a3b8cb700
commit 693d59a3e2
51 changed files with 10656 additions and 12 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
# Dependencies stage
FROM node:20-alpine AS deps
FROM node:26-alpine AS deps
WORKDIR /app
@@ -7,7 +7,7 @@ COPY package.json package-lock.json* ./
RUN npm install
# Build stage
FROM node:20-alpine AS builder
FROM node:26-alpine AS builder
WORKDIR /app
@@ -20,7 +20,7 @@ ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
RUN npm run build
# Runtime stage
FROM node:20-alpine AS runner
FROM node:26-alpine AS runner
WORKDIR /app