From c70d4a5f116601188286fb417511b7c0656aaaaa Mon Sep 17 00:00:00 2001 From: Djalim Simaila Date: Tue, 13 Jan 2026 09:07:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(Dockerfile):=20remove=20stray?= =?UTF-8?q?=20'flag'=20argument=20from=20deno=20cache=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6615438..1a335a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["run", "-A", "main.ts"]