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