From 88f35d0ffb7536da7e8a22f134a86786b5eb0386 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Jan 2025 23:53:36 +0100 Subject: [PATCH] fix: update dockerfile --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3265e6a..f8bff5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,11 @@ ENV DENO_DEPLOYMENT_ID=${GIT_REVISION} WORKDIR /app COPY . . -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 + +RUN deno install --allow-scripts +RUN sed -i -e 's/"deno"/"no-deno"/' node_modules/@libsql/client/package.json +RUN deno task db migrate +RUN deno task build EXPOSE 8000