🐛 (Dockerfile): remove stray 'flag' argument from deno cache command #6

Merged
djalim merged 1 commits from feature/deploy into main 2026-01-13 08:08:24 +00:00
+2 -2
View File
@@ -3,11 +3,11 @@ FROM denoland/deno:alpine
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN deno cache main.ts --allow-import flag RUN deno cache main.ts --allow-import
RUN deno task build RUN deno task build
USER deno USER deno
EXPOSE 80 EXPOSE 80
EXPOSE 443 EXPOSE 443
CMD ["run", "-A", "main.ts"] CMD ["run", "-A", "main.ts"]