From 9b6af75e988bf16a91cd34a06ae003fed3fbc102 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Fri, 12 Sep 2025 19:28:35 +0200 Subject: [PATCH] Changed Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a79052..12566db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN npm install COPY . . # Build ausführen (TypeScript -> dist) -RUN npx tsc --transpileOnly +RUN npx tsc --skipLibCheck --noEmitOnError false # --------- Production Stage --------- FROM node:20-alpine AS production