fix: Copy tsconfig.json for tsx path mapping resolution
All checks were successful
Trigger Cloudarix Deploy / call-webhook (push) Successful in 1s

This commit is contained in:
Ahmed Darrazi 2025-12-09 14:05:28 +01:00
parent 1cf1b00a9a
commit 6ce68b9a2f

View File

@ -9,6 +9,9 @@ WORKDIR /usr/src/app
COPY package.json package-lock.json ./
RUN npm ci --production --silent && npm install tsx dotenv --silent
# Copy tsconfig for path mapping resolution (@/ alias)
COPY tsconfig.json ./
# Copy worker code and shared lib
COPY worker ./worker
COPY lib ./lib