fix(runtime): installiere ts-node im Production-Image, damit Node --loader ts-node/esm funktioniert

This commit is contained in:
2025-10-01 21:47:35 +02:00
parent a7733c95f6
commit fe3acccb93

View File

@@ -23,7 +23,7 @@ RUN pnpm build
FROM node:22-alpine AS production
# Install pnpm
RUN npm install -g pnpm
RUN npm install -g pnpm ts-node
# Set working directory
WORKDIR /app