From cc6209afcb86ab0a32f77dcd1a665d9300647207 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Jan 2025 23:51:37 +0100 Subject: [PATCH] fix: update dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 84c10b9..3265e6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,10 @@ ENV DENO_DEPLOYMENT_ID=${GIT_REVISION} WORKDIR /app COPY . . -RUN deno install --allow-scripts=npm:sharp@0.33.5-rc.1 && deno task db migrate && deno task build +RUN deno install --allow-scripts &&\ + sed -i -e 's/"deno"/"no-deno"/' node_modules/@libsql/client/package.json &&\ + deno task db migrate &&\ + deno task build EXPOSE 8000