From 67f29ec3897851dfa641a673030784f1cc0cf625 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Thu, 24 Apr 2025 12:46:27 -0600 Subject: [PATCH] ? --- Dockerfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index e1248ec..f452e89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,16 +2,7 @@ FROM denoland/deno:alpine AS builder WORKDIR /app -COPY deno.json ./ - -COPY dev.ts main.ts fresh.config.ts fresh.gen.ts ./ - -COPY components/ ./components/ -COPY islands/ ./islands/ -COPY lib/ ./lib/ -COPY posts/ ./posts/ -COPY routes/ ./routes/ -COPY static/ ./static/ +COPY . . RUN deno cache main.ts