Fix: Use tsx for server in Docker

This commit is contained in:
2026-03-30 21:38:36 +00:00
parent 14aa2dec09
commit 87a87ae228
2 changed files with 4 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
RUN npm install
COPY . .