fix: remove non-existent import map

This commit is contained in:
Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com
2024-11-19 00:52:10 +09:00
parent 67d2caf0d7
commit bc67050933

View File

@@ -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 . .