mirror of
https://github.com/runyanjake/jakesphotos.git
synced 2026-06-25 07:14:53 -07:00
Compare commits
5 Commits
6fd67e6057
...
851b67a0f5
| Author | SHA1 | Date | |
|---|---|---|---|
| 851b67a0f5 | |||
| 9f0a963f37 | |||
| 0e8548649d | |||
| 6ba38b5907 | |||
| 958df7623c |
4
.dockerignore
Normal file
4
.dockerignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
node_modules
|
||||||
|
build
|
||||||
|
src/generated
|
||||||
|
.git
|
||||||
38
Dockerfile
38
Dockerfile
@ -1,32 +1,28 @@
|
|||||||
# Use the official Node.js image as a build stage
|
# Shared dependency layer, reused by the ci and build targets.
|
||||||
FROM node:20-alpine AS build
|
FROM node:20-alpine AS deps
|
||||||
|
|
||||||
# Set the working directory
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
COPY package.json package-lock.json ./
|
||||||
|
RUN npm ci
|
||||||
|
|
||||||
# Copy package.json and package-lock.json
|
# Lint + content validation target, used by CI (docker build --target ci).
|
||||||
COPY package*.json ./
|
FROM deps AS ci
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
RUN npm install
|
|
||||||
|
|
||||||
# Copy the rest of the application code
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
RUN node scripts/build-content.js && npx eslint src --ignore-pattern 'src/generated/**' --max-warnings=0
|
||||||
|
|
||||||
# Build the React application
|
# Production build target: generates content then bundles the static site.
|
||||||
|
FROM deps AS build
|
||||||
|
COPY . .
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
# Use a lightweight web server to serve the build files
|
# Serve the static bundle with nginx.
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
# Copy the build files from the previous stage
|
|
||||||
COPY --from=build /app/build /usr/share/nginx/html
|
COPY --from=build /app/build /usr/share/nginx/html
|
||||||
|
# Custom config so client-side routes fall back to index.html.
|
||||||
# Use custom nginx config so client-side routes (e.g. /contact, /about) fall back to index.html
|
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
# Expose port 80
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
# Liveness probe. Use 127.0.0.1 (not localhost): nginx listens IPv4-only and
|
||||||
|
# busybox wget would resolve localhost to ::1 and get connection refused.
|
||||||
|
HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 \
|
||||||
|
CMD wget -q -O /dev/null http://127.0.0.1:80/ || exit 1
|
||||||
|
|
||||||
# Start Nginx
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
|
||||||
|
|||||||
148
Jenkinsfile
vendored
Normal file
148
Jenkinsfile
vendored
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
environment {
|
||||||
|
DISCORD_WEBHOOK = credentials('discord-pws-builds-channel-webhook')
|
||||||
|
|
||||||
|
COMPOSE_SERVICE = 'portfolio'
|
||||||
|
CONTAINER_NAME = 'jakesphotos'
|
||||||
|
}
|
||||||
|
|
||||||
|
options {
|
||||||
|
timestamps()
|
||||||
|
disableConcurrentBuilds()
|
||||||
|
timeout(time: 30, unit: 'MINUTES')
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Checkout') {
|
||||||
|
steps {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Preflight') {
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
set -eu
|
||||||
|
: "${DISCORD_WEBHOOK:?required credential discord-pws-builds-channel-webhook is missing}"
|
||||||
|
for f in Dockerfile package.json docker-compose.yml content/_config.json; do
|
||||||
|
[ -f "$f" ] || { echo "ERROR: required file '$f' not found at repo root" >&2; exit 1; }
|
||||||
|
done
|
||||||
|
docker compose config -q
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Lint & Type-check') {
|
||||||
|
steps {
|
||||||
|
// Static checks run inside the image's ci target; nothing touches the agent.
|
||||||
|
sh 'docker build --target ci -t ${CONTAINER_NAME}-ci:${BUILD_NUMBER} .'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Teardown') {
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
set -eu
|
||||||
|
docker compose down --remove-orphans || true
|
||||||
|
# container_name is fixed, so a stale container can survive "down"
|
||||||
|
# and then block "up" with a name conflict; reap it explicitly.
|
||||||
|
docker rm -f "$CONTAINER_NAME" >/dev/null 2>&1 || true
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Build & Deploy') {
|
||||||
|
steps {
|
||||||
|
// No build-time secrets: the React build consumes only static content/.
|
||||||
|
sh 'docker compose up -d --build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Health Check') {
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
set -eu
|
||||||
|
cid="$(docker compose ps -q "$COMPOSE_SERVICE")"
|
||||||
|
[ -n "$cid" ] || { echo "ERROR: $COMPOSE_SERVICE container not found" >&2; exit 1; }
|
||||||
|
|
||||||
|
# Wait for the image's HEALTHCHECK to report healthy, failing fast on terminal states.
|
||||||
|
deadline=$(( $(date +%s) + 90 ))
|
||||||
|
while :; do
|
||||||
|
status="$(docker inspect -f '{{.State.Status}}' "$cid")"
|
||||||
|
health="$(docker inspect -f '{{if .State.Health}}{{.State.Health.Status}}{{else}}none{{end}}' "$cid")"
|
||||||
|
[ "$status" = "running" ] && [ "$health" = "healthy" ] && break
|
||||||
|
[ "$health" = "unhealthy" ] && { echo "ERROR: $COMPOSE_SERVICE reported unhealthy" >&2; exit 1; }
|
||||||
|
case "$status" in
|
||||||
|
exited|dead) echo "ERROR: $COMPOSE_SERVICE container $status before becoming healthy" >&2; exit 1 ;;
|
||||||
|
esac
|
||||||
|
[ "$(date +%s)" -ge "$deadline" ] && { echo "ERROR: timed out waiting for healthy (status=$status, health=$health)" >&2; exit 1; }
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo "$COMPOSE_SERVICE healthy"
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Smoke Test') {
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
set -eu
|
||||||
|
cid="$(docker compose ps -q "$COMPOSE_SERVICE")"
|
||||||
|
[ -n "$cid" ] || { echo "ERROR: $COMPOSE_SERVICE container not found" >&2; exit 1; }
|
||||||
|
|
||||||
|
# Real request from inside the container: GET / must serve the SPA shell.
|
||||||
|
body="$(docker exec "$cid" wget -q -O - http://127.0.0.1:80/)" || { echo "ERROR: GET / did not return a successful response" >&2; exit 1; }
|
||||||
|
echo "$body" | grep -q 'id="root"' || { echo "ERROR: GET / response missing expected app markup" >&2; exit 1; }
|
||||||
|
echo "smoke test passed"
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
script {
|
||||||
|
def result = currentBuild.currentResult
|
||||||
|
def emoji = result == 'SUCCESS' ? ':green_circle:' :
|
||||||
|
result == 'FAILURE' ? ':red_circle:' : ':yellow_circle:'
|
||||||
|
|
||||||
|
def branch = env.BRANCH_NAME ?: env.GIT_BRANCH ?: 'Main/Manual'
|
||||||
|
|
||||||
|
def duration = currentBuild.durationString
|
||||||
|
.replace(' and no weeks', '')
|
||||||
|
.replace(' and counting', '')
|
||||||
|
|
||||||
|
def commits = currentBuild.changeSets.collectMany { set ->
|
||||||
|
set.items.collect { "> ${it.msg} (by *${it.author.fullName}*)" }
|
||||||
|
}
|
||||||
|
def commitText = commits ? commits.join('\n') : 'No recent changes detected.'
|
||||||
|
|
||||||
|
def discordDescription = """**Status:** ${emoji} ${result}
|
||||||
|
**Branch:** `${branch}`
|
||||||
|
**Duration:** :stopwatch: ${duration}
|
||||||
|
|
||||||
|
**Commits:**
|
||||||
|
${commitText}"""
|
||||||
|
|
||||||
|
discordSend(
|
||||||
|
webhookURL: env.DISCORD_WEBHOOK,
|
||||||
|
title: "📦 Build Alert: ${env.JOB_NAME} [Build #${env.BUILD_NUMBER}]",
|
||||||
|
link: "${env.BUILD_URL}",
|
||||||
|
result: "${currentBuild.currentResult}",
|
||||||
|
description: discordDescription
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
failure {
|
||||||
|
sh '''
|
||||||
|
echo "=== docker compose ps ==="
|
||||||
|
docker compose ps || true
|
||||||
|
echo "=== recent logs ==="
|
||||||
|
docker compose logs --tail=200 || true
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user