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