🐛 (Dockerfile): remove stray 'flag' argument from deno cache command
Check Deno code / Check Deno code (pull_request) Successful in 14s

This commit is contained in:
2026-01-13 09:07:01 +01:00
parent 19a588ac25
commit c70d4a5f11
+2 -2
View File
@@ -3,11 +3,11 @@ FROM denoland/deno:alpine
WORKDIR /app
COPY . .
RUN deno cache main.ts --allow-import flag
RUN deno cache main.ts --allow-import
RUN deno task build
USER deno
EXPOSE 80
EXPOSE 443
CMD ["run", "-A", "main.ts"]
CMD ["run", "-A", "main.ts"]