refactor(dockerfile): update runtime base image to alpine:latest
All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 5s
Auto Changelog & Release / release (push) Has been skipped
Auto Changelog & Release / changelog-only (push) Successful in 8s
Build and upload Docker nightly image / build-and-push (push) Successful in 47s

- Switches the runtime base image from denoland/deno:alpine to alpine:latest
  for a more minimal and customizable environment.
- Adds curl installation for optional health checks in containers.
This commit is contained in:
2025-05-11 01:23:51 +02:00
parent 0d872a5acc
commit ec18f7b4e3

View File

@@ -14,7 +14,7 @@ COPY import_map.json ./import_map.json
RUN deno task compile
# -------- Stage 2: Minimal runtime environment --------
FROM denoland/deno:alpine
FROM alpine:latest
# Optional: Install curl for container-level health checks (not needed for production-only binaries)
RUN apk add --no-cache curl