Add docker stuff to host!
This commit is contained in:
54
host/next/docker/Dockerfile
Normal file
54
host/next/docker/Dockerfile
Normal file
@@ -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"]
|
18
host/next/docker/compose.yml
Normal file
18
host/next/docker/compose.yml
Normal file
@@ -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
|
9
host/next/update
Normal file
9
host/next/update
Normal file
@@ -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
|
Reference in New Issue
Block a user