commit #2

Merged
phaichayon merged 1 commits from set-auth into main 2026-07-16 09:36:54 +00:00
2 changed files with 114 additions and 31 deletions

View File

@@ -1,28 +1,109 @@
# syntax=docker/dockerfile:1
# =========================================================
# Base
# =========================================================
FROM node:20-bookworm-slim AS base FROM node:20-bookworm-slim AS base
WORKDIR /app WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
ENV HUSKY=0
# =========================================================
# Dependencies
# =========================================================
FROM base AS deps FROM base AS deps
COPY package.json package-lock.json ./
RUN npm install --no-audit --no-fund
COPY package.json package-lock.json ./
RUN npm ci --no-audit --no-fund
# =========================================================
# Builder
# =========================================================
FROM base AS builder FROM base AS builder
ENV NODE_ENV=production ENV NODE_ENV=production
ENV BUILD_STANDALONE=true ENV BUILD_STANDALONE=true
ENV NEXT_TELEMETRY_DISABLED=1
ENV HUSKY=0
ARG NEXT_PUBLIC_SENTRY_DISABLED=true ARG NEXT_PUBLIC_SENTRY_DISABLED=true
ENV NEXT_PUBLIC_SENTRY_DISABLED=${NEXT_PUBLIC_SENTRY_DISABLED} ENV NEXT_PUBLIC_SENTRY_DISABLED=${NEXT_PUBLIC_SENTRY_DISABLED}
COPY --from=deps /app/node_modules ./node_modules COPY --from=deps /app/node_modules ./node_modules
COPY . . COPY . .
RUN npm run build RUN npm run build
# =========================================================
# Migration / Seed image
#
# ใช้ target นี้สำหรับ:
# - npm run migrate
# - npm run seed:master-data
# - npm run seed:super-admin
# =========================================================
FROM base AS migrator
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
ENV HUSKY=0
COPY --from=deps /app/node_modules ./node_modules
COPY package.json package-lock.json ./
# Drizzle configuration
COPY drizzle.config.* ./
# Migration files
COPY drizzle ./drizzle
# Database source code ที่ migration/seed scripts อาจ import
COPY src ./src
COPY scripts ./scripts
# ถ้าโปรเจกต์ใช้ tsconfig path alias
COPY tsconfig.json ./
# ถ้ามีไฟล์ config อื่นที่ scripts ใช้งาน ให้เปิดใช้ตามจริง
# COPY next.config.* ./
# COPY env.* ./
CMD ["npm", "run", "migrate"]
# =========================================================
# Production Runner
# =========================================================
FROM node:20-bookworm-slim AS runner FROM node:20-bookworm-slim AS runner
WORKDIR /app WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
ENV PORT=3000 ENV PORT=3000
ENV HOSTNAME=0.0.0.0 ENV HOSTNAME=0.0.0.0
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./ RUN groupadd --system --gid 1001 nodejs \
COPY --from=builder /app/.next/static ./.next/static && useradd --system --uid 1001 --gid nodejs nextjs
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
# กรณีแอปมี persistent local storage
RUN mkdir -p /app/storage \
&& chown -R nextjs:nodejs /app/storage
USER nextjs
EXPOSE 3000 EXPOSE 3000
CMD ["node", "server.js"] CMD ["node", "server.js"]

View File

@@ -1,37 +1,37 @@
import type { NextConfig } from 'next'; import type { NextConfig } from "next";
import { withSentryConfig } from '@sentry/nextjs'; import { withSentryConfig } from "@sentry/nextjs";
// Define the base Next.js configuration // Define the base Next.js configuration
const baseConfig: NextConfig = { const baseConfig: NextConfig = {
output: process.env.BUILD_STANDALONE === 'true' ? 'standalone' : undefined, output: "standalone",
images: { images: {
remotePatterns: [ remotePatterns: [
{ {
protocol: 'https', protocol: "https",
hostname: 'api.slingacademy.com', hostname: "api.slingacademy.com",
port: '' port: "",
}, },
{ {
protocol: 'https', protocol: "https",
hostname: 'placehold.co', hostname: "placehold.co",
port: '' port: "",
}, },
{ {
protocol: 'https', protocol: "https",
hostname: 'img.clerk.com', hostname: "img.clerk.com",
port: '' port: "",
}, },
{ {
protocol: 'https', protocol: "https",
hostname: 'clerk.com', hostname: "clerk.com",
port: '' port: "",
} },
] ],
}, },
transpilePackages: ['geist'], transpilePackages: ["geist"],
compiler: { compiler: {
removeConsole: process.env.NODE_ENV === 'production' removeConsole: process.env.NODE_ENV === "production",
} },
}; };
let configWithPlugins = baseConfig; let configWithPlugins = baseConfig;
@@ -48,7 +48,7 @@ if (!process.env.NEXT_PUBLIC_SENTRY_DISABLED) {
widenClientFileUpload: true, widenClientFileUpload: true,
// Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers. // Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers.
tunnelRoute: '/monitoring', tunnelRoute: "/monitoring",
// Disable Sentry telemetry // Disable Sentry telemetry
telemetry: false, telemetry: false,
@@ -56,17 +56,19 @@ if (!process.env.NEXT_PUBLIC_SENTRY_DISABLED) {
// Sentry v10: moved under webpack namespace // Sentry v10: moved under webpack namespace
webpack: { webpack: {
reactComponentAnnotation: { reactComponentAnnotation: {
enabled: true enabled: true,
}, },
treeshake: { treeshake: {
removeDebugLogging: true removeDebugLogging: true,
} },
}, },
// Disable source map upload when org/project are not configured // Disable source map upload when org/project are not configured
sourcemaps: { sourcemaps: {
disable: !process.env.NEXT_PUBLIC_SENTRY_ORG || !process.env.NEXT_PUBLIC_SENTRY_PROJECT disable:
} !process.env.NEXT_PUBLIC_SENTRY_ORG ||
!process.env.NEXT_PUBLIC_SENTRY_PROJECT,
},
}); });
} }