From ec18f7b4e39bbfa88ba23ef3fdf825917ac5303b Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 01:23:51 +0200 Subject: [PATCH] refactor(dockerfile): update runtime base image to alpine:latest - 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ff0028..a60d9ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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