From 81e16f22324bd9b9df509699766b2d76fec2c020 Mon Sep 17 00:00:00 2001 From: Denis Domscheit <65335998+sined0606@users.noreply.github.com> Date: Fri, 26 Dec 2025 22:52:17 +0100 Subject: [PATCH] Change Deno install command to global install Resolution frome Docker compose build failed #32 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7b5c1e2..54969b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ VOLUME /app/data COPY . . -RUN deno install -A +RUN deno install -gA main.ts CMD [ "deno", "task", "run" ]