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