From e4ca1981deaf4d281063b0f168322e8cc2c538c2 Mon Sep 17 00:00:00 2001 From: Graham Barber Date: Fri, 17 Jul 2026 05:13:20 +0000 Subject: [PATCH] bump deno to 2.9.3 in the Dockerfile Unifies the runtime image with the local toolchain and CI (both 2.9.3). Co-Authored-By: Claude Opus 4.8 --- Dockerfile | 4 ++-- 1 file(s) changed, 2 insertion(s)(+), 2 deletion(s)(-) diff --git a/Dockerfile b/Dockerfile --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage: install dependencies and produce the adapter-node output. -FROM denoland/deno:2.9.2 AS build +FROM denoland/deno:2.9.3 AS build WORKDIR /app ENV DENO_NO_UPDATE_CHECK=1 @@ -12,7 +12,7 @@ # Runtime stage (alpine keeps the image small). The adapter-node output # resolves npm packages at runtime, so node_modules and the manifests come # along; dev tooling does not run. -FROM denoland/deno:alpine-2.9.2 +FROM denoland/deno:alpine-2.9.3 WORKDIR /app ENV DENO_NO_UPDATE_CHECK=1 -- tangled.sh