From bc6705093395ca3ca372920ffb9222ce952e62b5 Mon Sep 17 00:00:00 2001 From: "Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com" <4584443+DragonStuff@users.noreply.github.com> Date: Tue, 19 Nov 2024 00:52:10 +0900 Subject: [PATCH] fix: remove non-existent import map --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 127e349..7b93e59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY deno.json . COPY import_map.json* . # Cache dependencies -RUN deno cache --import-map=import_map.json src/main.ts +RUN deno cache src/main.ts # Copy source code COPY . .