From c20e4581a6e0fc3e2eeafb8aad7686a5bc0c7c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andri=20=C3=93skarsson?= Date: Sat, 18 Jan 2025 10:39:23 +0100 Subject: [PATCH] fixing --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a7396b..21563a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,10 +42,12 @@ RUN cd /tmp/dev && bun install --frozen-lockfile #RUN npm rebuild @tensorflow/tfjs-node --build-from-source -# Astro build +# Build what needs building FROM base AS project COPY --from=deps --chown=1000:1000 /tmp/dev/node_modules node_modules COPY --chown=1000:1000 . . +# Fail on type errors +RUN bun run verify:types RUN bun run build # Service -- 2.51.2