From abd311ba99b608e4c107c9d2f499081039052144 Mon Sep 17 00:00:00 2001 From: ravencodess Date: Thu, 25 Jul 2024 10:52:51 +0100 Subject: [PATCH] added docker --- docker/development/Dockerfile | 56 +++++++++++++++++++++++++++ docker/development/docker-compose.yml | 17 ++++++++ docker/prod/Dockerfile | 55 ++++++++++++++++++++++++++ docker/prod/docker-compose.yml | 17 ++++++++ docker/staging/Dockerfile | 55 ++++++++++++++++++++++++++ docker/staging/docker-compose.yml | 17 ++++++++ 6 files changed, 217 insertions(+) create mode 100644 docker/development/Dockerfile create mode 100644 docker/development/docker-compose.yml create mode 100644 docker/prod/Dockerfile create mode 100644 docker/prod/docker-compose.yml create mode 100644 docker/staging/Dockerfile create mode 100644 docker/staging/docker-compose.yml diff --git a/docker/development/Dockerfile b/docker/development/Dockerfile new file mode 100644 index 000000000..2c54c36c3 --- /dev/null +++ b/docker/development/Dockerfile @@ -0,0 +1,56 @@ +# Use the official Node.js image based on Alpine Linux for a smaller image size +FROM node:20-alpine AS base + +FROM base AS deps + +# Install build dependencies +RUN apk add --no-cache libc6-compat + +# Set the working directory +WORKDIR /app + +# Copy package.json and pnpm-lock.yaml +COPY package.json pnpm-lock.yaml ./ + +# Install dependencies +RUN corepack enable pnpm && pnpm install --frozen-lockfile + +# Rebuild the source code only when needed +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Build the application +RUN corepack enable pnpm && pnpm run build + + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV production +# Uncomment the following line in case you want to disable telemetry during runtime. +# ENV NEXT_TELEMETRY_DISABLED 1 + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +# Copy necessary files for production +COPY --from=builder /app/public ./public +COPY --from=builder /app/.next/standalone ./ +COPY --from=builder /app/.next/static ./.next/static + +# Set the correct permission for prerender cache +RUN mkdir -p .next +RUN chown nextjs:nodejs .next + +USER nextjs + +EXPOSE 3000 + +ENV PORT 3000 + +# server.js is created by next build from the standalone output +# https://nextjs.org/docs/pages/api-reference/next-config-js/output +CMD HOSTNAME="0.0.0.0" node server.js \ No newline at end of file diff --git a/docker/development/docker-compose.yml b/docker/development/docker-compose.yml new file mode 100644 index 000000000..f9cbfb510 --- /dev/null +++ b/docker/development/docker-compose.yml @@ -0,0 +1,17 @@ +services: + + next-dev-frontend-1: + build: + context: ../../ + dockerfile: docker/development/Dockerfile + ports: + - 3100:3000 + restart: always + + next-dev-frontend-2: + build: + context: ../../ + dockerfile: docker/development/Dockerfile + ports: + - 3130:3000 + restart: always diff --git a/docker/prod/Dockerfile b/docker/prod/Dockerfile new file mode 100644 index 000000000..a0d1e4139 --- /dev/null +++ b/docker/prod/Dockerfile @@ -0,0 +1,55 @@ +Use the official Node.js image based on Alpine Linux for a smaller image size +FROM node:20-alpine AS base + +FROM base AS deps + +# Install build dependencies +RUN apk add --no-cache libc6-compat + +# Set the working directory +WORKDIR /app + +# Copy package.json and pnpm-lock.yaml +COPY package.json pnpm-lock.yaml ./ + +# Install dependencies +RUN corepack enable pnpm && pnpm install --frozen-lockfile + +# Rebuild the source code only when needed +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Build the application +RUN corepack enable pnpm && pnpm run build + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV development +# Uncomment the following line in case you want to disable telemetry during runtime. +# ENV NEXT_TELEMETRY_DISABLED 1 + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +# Copy necessary files for production +COPY --from=builder /app/public ./public +COPY --from=builder /app/.next/standalone ./ +COPY --from=builder /app/.next/static ./.next/static + +# Set the correct permission for prerender cache +RUN mkdir -p .next +RUN chown nextjs:nodejs .next + +USER nextjs + +EXPOSE 3000 + +ENV PORT 3000 + +# server.js is created by next build from the standalone output +# https://nextjs.org/docs/pages/api-reference/next-config-js/output +CMD HOSTNAME="0.0.0.0" node server.js \ No newline at end of file diff --git a/docker/prod/docker-compose.yml b/docker/prod/docker-compose.yml new file mode 100644 index 000000000..b3bd96b55 --- /dev/null +++ b/docker/prod/docker-compose.yml @@ -0,0 +1,17 @@ +services: + + next-prod-frontend-1: + build: + context: ../../ + dockerfile: docker/prod/Dockerfile + ports: + - 3000:3000 + restart: always + + next-prod-frontend-2: + build: + context: ../../ + dockerfile: docker/prod/Dockerfile + ports: + - 3030:3000 + restart: always diff --git a/docker/staging/Dockerfile b/docker/staging/Dockerfile new file mode 100644 index 000000000..a0d1e4139 --- /dev/null +++ b/docker/staging/Dockerfile @@ -0,0 +1,55 @@ +Use the official Node.js image based on Alpine Linux for a smaller image size +FROM node:20-alpine AS base + +FROM base AS deps + +# Install build dependencies +RUN apk add --no-cache libc6-compat + +# Set the working directory +WORKDIR /app + +# Copy package.json and pnpm-lock.yaml +COPY package.json pnpm-lock.yaml ./ + +# Install dependencies +RUN corepack enable pnpm && pnpm install --frozen-lockfile + +# Rebuild the source code only when needed +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Build the application +RUN corepack enable pnpm && pnpm run build + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV development +# Uncomment the following line in case you want to disable telemetry during runtime. +# ENV NEXT_TELEMETRY_DISABLED 1 + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +# Copy necessary files for production +COPY --from=builder /app/public ./public +COPY --from=builder /app/.next/standalone ./ +COPY --from=builder /app/.next/static ./.next/static + +# Set the correct permission for prerender cache +RUN mkdir -p .next +RUN chown nextjs:nodejs .next + +USER nextjs + +EXPOSE 3000 + +ENV PORT 3000 + +# server.js is created by next build from the standalone output +# https://nextjs.org/docs/pages/api-reference/next-config-js/output +CMD HOSTNAME="0.0.0.0" node server.js \ No newline at end of file diff --git a/docker/staging/docker-compose.yml b/docker/staging/docker-compose.yml new file mode 100644 index 000000000..96ed1f242 --- /dev/null +++ b/docker/staging/docker-compose.yml @@ -0,0 +1,17 @@ +services: + + next-staging-frontend-1: + build: + context: ../../ + dockerfile: docker/staging/Dockerfile + ports: + - 3200:3000 + restart: always + + # next-staging-frontend-2: + # build: + # context: ../../ + # dockerfile: docker/staging/Dockerfile + # ports: + # - 3230:3000 + # restart: alwaysraven@frontend:/home/nextjs/staging/hng_boilerplate_nextjs/docker/staging$