heartwood every commit a ring

Switch to Alpine-based Bun image and use built-in bun user

810f09b7 by Isaac Bythewood · 1 month ago

Switch to Alpine-based Bun image and use built-in bun user

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
modified Dockerfile
@@ -1,11 +1,7 @@FROM oven/bun:latestFROM oven/bun:alpineENV NEXT_TELEMETRY_DISABLED=1RUN addgroup --system --gid 1000 app && \    adduser --system --home /app --shell /sbin/nologin --uid 1000 --ingroup app app && \    chown -R app:app /appWORKDIR /appCOPY package.json bun.lock /app/
@@ -15,4 +11,4 @@ COPY . .RUN bun run next:buildUSER app:appUSER bun