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