From 428cd0f27c6e07ff0c33635cbe34440ace4ca9e7 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Jan 2025 23:20:52 +0100 Subject: [PATCH] fix: update dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 56bffb6..53f5096 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ENV DENO_DEPLOYMENT_ID=${GIT_REVISION} WORKDIR /app COPY . . -RUN deno cache main.ts && deno task build +RUN deno --allow-import --allow-scripts=npm:sharp@0.33.5-rc.1 install && deno task build EXPOSE 8000