Fix: Move TypeScript to dependencies for Docker build
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 14s

Move typescript from devDependencies to dependencies so it's
available in the Docker container during build.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 16:36:34 +01:00
parent 40be1e181c
commit 6825e9d1b2
2 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci --only=production
RUN npm ci
# Copy source and build
COPY . .