fix: simplify significantly

This commit is contained in:
Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com
2024-11-19 00:55:03 +09:00
parent c6a974a676
commit a913d53c57

View File

@@ -4,13 +4,6 @@ FROM denoland/deno:1.46.3
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app
# Copy dependency files
COPY deno.json .
COPY import_map.json* .
# Cache dependencies
RUN deno cache src/main.ts
# Copy source code # Copy source code
COPY . . COPY . .