From 4b80303c87f7f245ec22261835ab1fc16f8e1a14 Mon Sep 17 00:00:00 2001 From: casulit Date: Wed, 30 Oct 2024 09:01:59 +0800 Subject: [PATCH] build(Dockerfile): Add deno install with --allow-scripts in Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 13af937..ee8382a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ WORKDIR /app COPY . /app RUN deno cache server.ts && \ + deno install --allow-scripts && \ deno compile --allow-net --allow-read --allow-env --unstable-kv --no-check server.ts # Runtime stage