oeufx2
Some checks failed
Docker Deploy / build-and-push (push) Failing after 25s

This commit is contained in:
Atridad Lahiji 2025-04-24 12:16:29 -06:00
parent a0edba63bc
commit 15b45f2a10
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438

View file

@ -2,8 +2,9 @@ FROM denoland/deno:alpine AS builder
WORKDIR /app WORKDIR /app
COPY deno.json import_map.json ./ COPY deno.json ./
COPY dev.ts main.ts .env* ./
COPY dev.ts main.ts fresh.config.ts fresh.gen.ts ./
COPY components/ ./components/ COPY components/ ./components/
COPY islands/ ./islands/ COPY islands/ ./islands/
@ -25,5 +26,4 @@ ENV DENO_DEPLOYMENT=production
EXPOSE 8000 EXPOSE 8000
# Run the server
CMD ["run", "-A", "main.ts"] CMD ["run", "-A", "main.ts"]