From c74a19b5272ff3fe0258c83009d6c4267607e9ae Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sat, 10 Jan 2026 19:49:07 +0100 Subject: [PATCH] fix(ci): make dockerfile work --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 58c0a8b..dfa1f46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,9 @@ ENV DATA_DIR=/app/data RUN mkdir -p $DATA_DIR && \ deno install --allow-import --allow-ffi -e main.ts &&\ sed -i -e 's/"deno"/"no-deno"/' node_modules/@libsql/client/package.json &&\ + deno install npm:@libsql/linux-x64-gnu &&\ deno task build EXPOSE 8000 -CMD ["run", "-A", "main.ts"] - +CMD ["task", "start"]