From 7427d04cf931c7fab1ae1d96d80a999d83867bae Mon Sep 17 00:00:00 2001 From: Matthias Hochmeister Date: Fri, 13 Mar 2026 11:40:05 +0100 Subject: [PATCH] update sync --- sync/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync/Dockerfile b/sync/Dockerfile index f10d488..99a7b6f 100644 --- a/sync/Dockerfile +++ b/sync/Dockerfile @@ -8,7 +8,7 @@ COPY package*.json .npmrc ./ RUN npm ci --include=dev COPY tsconfig.json ./ COPY src ./src -RUN ./node_modules/.bin/tsc && npm prune --production +RUN node node_modules/typescript/bin/tsc && npm prune --production # Stage 2: runtime with Playwright FROM mcr.microsoft.com/playwright:v1.47.0-jammy