From cd0965e617c2ce41cf377182c966255b5991e33c Mon Sep 17 00:00:00 2001 From: donny Date: Thu, 28 May 2026 12:33:18 -0700 Subject: [PATCH] feat: add dockerfile and dockerignore, update next config --- .dockerignore | 39 +++++++++++++++++++++++++++++++++++++++ Dockerfile | 36 ++++++++++++++++++++++++++++++++++++ next.config.ts | 3 ++- 3 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 .dockerignore create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..e576b18 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,39 @@ +# Version control +.git +.gitignore +.gitattributes + +# Dependencies + build artifacts (rebuilt in image) +node_modules +.next +out +dist +.turbo + +# Local env files — must come from runtime, never bake into image +.env +.env.local +.env.*.local + +# Editor / IDE +.vscode +.idea +.DS_Store + +# Logs + caches +*.log +.npm +.eslintcache +.next/cache + +# Docs and meta — not needed at runtime +README.md +CLAUDE.md +AGENTS.md +docs + +# Docker artifacts themselves +Dockerfile +.dockerignore +docker-compose.yml +docker-compose.*.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d540bc8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,36 @@ +# syntax=docker/dockerfile:1.7 + +FROM node:22-alpine AS deps +WORKDIR /app + +COPY package.json package-lock.json* ./ +RUN npm ci + + +FROM node:22-alpine AS builder +WORKDIR /app + +ENV NEXT_TELEMETRY_DISABLED=1 + +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +RUN npm run build + +FROM node:22-alpine AS runner +WORKDIR /app + +ENV NODE_ENV=production +ENV NEXT_TELEMETRY_DISABLED=1 +ENV PORT=3000 +ENV HOSTNAME=0.0.0.0 + +USER node + +COPY --from=builder --chown=node:node /app/public ./public +COPY --from=builder --chown=node:node /app/.next/standalone ./ +COPY --from=builder --chown=node:node /app/.next/static ./.next/static + +EXPOSE 3000 + +CMD ["node", "server.js"] diff --git a/next.config.ts b/next.config.ts index 1cc2ecc..3b0c9ab 100644 --- a/next.config.ts +++ b/next.config.ts @@ -14,7 +14,8 @@ const svgrOptions = { }; const nextConfig: NextConfig = { - // Allow next/image to load from LinkedIn's CDN + output: "standalone", + images: { remotePatterns: [ {