Compare commits

..

2 Commits

Author SHA1 Message Date
bcc6e8652b port 3010 2025-08-18 15:24:43 -05:00
77fc0ab119 node 22 2025-08-18 14:58:41 -05:00
2 changed files with 3 additions and 4 deletions

View File

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

View File

@@ -1,8 +1,7 @@
version: "3.8"
services:
fancytext-app:
build: .
ports:
- "3001:3000"
- "3010:3000"
environment:
- NODE_ENV=production