heartwood every commit a ring

Use bun runtime for Next.js, remove Node.js dependency, disable telemetry locally

95cc420d by Isaac Bythewood · 1 month ago

Use bun runtime for Next.js, remove Node.js dependency, disable telemetry locally

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
modified Dockerfile
@@ -2,9 +2,6 @@ FROM oven/bun:1-alpineENV NEXT_TELEMETRY_DISABLED=1RUN apk add --update --no-cache \      nodejsRUN addgroup -S -g 1000 app && \    adduser -S -h /app -s /sbin/nologin -u 1000 -G app app && \    chown -R app:app /app
modified Makefile
@@ -1,3 +1,5 @@export NEXT_TELEMETRY_DISABLED=1.PHONY: install run build push resumerun:
modified package.json
@@ -1,9 +1,9 @@{  "private": true,  "scripts": {    "start": "next --port 8000",    "next:start": "next start --port ${PORT}",    "next:build": "next build",    "start": "bun --bun next --port 8000",    "next:start": "bun --bun next start --port ${PORT}",    "next:build": "bun --bun next build",    "resume": "bun resume/generate.js"  },  "dependencies": {