From 08bbf69f5bfed62a15119a732acaeaa2c0f85a92 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Thu, 4 Sep 2025 20:19:58 -0500 Subject: [PATCH] Add docker stuff to host! --- host/next/docker/Dockerfile | 54 ++++++++++++++++++++++++++++++++++++ host/next/docker/compose.yml | 18 ++++++++++++ host/next/update | 9 ++++++ 3 files changed, 81 insertions(+) create mode 100644 host/next/docker/Dockerfile create mode 100644 host/next/docker/compose.yml create mode 100644 host/next/update diff --git a/host/next/docker/Dockerfile b/host/next/docker/Dockerfile new file mode 100644 index 0000000..a993a10 --- /dev/null +++ b/host/next/docker/Dockerfile @@ -0,0 +1,54 @@ +# syntax=docker/dockerfile:1 +FROM oven/bun:latest AS base +# Install dependencies only when needed +FROM base AS deps +# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. +RUN apk add --no-cache libc6-compat +WORKDIR /app + +# Install dependencies with Bun +COPY package.json bun.lockb* ./ +RUN bun install --frozen-lockfile +RUN \ + if [ -f bun.lockb ]; then bun install --frozen-lockfile; \ + else echo "Lockfile not found." && exit 1; \ + fi +# Rebuild the source code only when needed +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . +ENV NEXT_TELEMETRY_DISABLED=1 + +RUN bun run build + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV=production +ENV NEXT_TELEMETRY_DISABLED=1 + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +COPY --from=builder /app/public ./public + +# Set the correct permission for prerender cache +RUN mkdir .next +RUN chown nextjs:nodejs .next + +# Automatically leverage output traces to reduce image size +# https://nextjs.org/docs/advanced-features/output-file-tracing +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static + +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/config/next-config-js/output +ENV HOSTNAME="0.0.0.0" +CMD ["node", "server.js"] diff --git a/host/next/docker/compose.yml b/host/next/docker/compose.yml new file mode 100644 index 0000000..fb6e72f --- /dev/null +++ b/host/next/docker/compose.yml @@ -0,0 +1,18 @@ +networks: + nginx-bridge: + external: true +services: + techtracker-next: + build: + context: ../../.. + dockerfile: host/next/docker/Dockerfile + image: nextjs + container_name: techtracker-next + hostname: techtracker-next + domainname: techtracker.gbrown.org + networks: [nginx-bridge] + depends_on: ['tt-convex-backend'] + ports: ['3000:3000'] + tty: true + stdin_open: true + restart: unless-stopped diff --git a/host/next/update b/host/next/update new file mode 100644 index 0000000..a4c43a1 --- /dev/null +++ b/host/next/update @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +git pull +bun update +#mv ./next.config.js ./host/next/config/next.config.default.js +#cp ./host/next/config/next.config.build.js ./next.config.js +sudo docker compose -f ./host/next/docker/compose.yaml down +sudo docker compose -f ./host/next/docker/compose.yaml build +sudo docker compose -f ./host/next/docker/compose.yaml up -d +#cp ./host/next/config/next.config.default.js ./next.config.js