This commit is contained in:
Andreas Knuth 2025-08-18 14:58:41 -05:00
parent 5fbd696ad0
commit 77fc0ab119
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# 1) Base # 1) Base
FROM node:18-alpine AS base FROM node:22-alpine AS base
WORKDIR /app WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
@ -22,7 +22,7 @@ RUN npm run build
RUN npm prune --omit=dev RUN npm prune --omit=dev
# 4) Runner # 4) Runner
FROM node:18-alpine AS runner FROM node:22-alpine AS runner
WORKDIR /app WORKDIR /app
ENV NODE_ENV=production \ ENV NODE_ENV=production \
NEXT_TELEMETRY_DISABLED=1 \ NEXT_TELEMETRY_DISABLED=1 \

View File

@ -1,4 +1,3 @@
version: "3.8"
services: services:
fancytext-app: fancytext-app:
build: . build: .