feat: initial commit of tiny-n8n middleware with CI/CD
Some checks failed
Build and Deploy / build-and-push (push) Failing after 27s

This commit is contained in:
Cauê Faleiros
2026-04-09 10:28:23 -03:00
parent c687fd2bd1
commit 923705c83b

View File

@@ -5,7 +5,7 @@ WORKDIR /app
# Copy package files and install all dependencies (including devDependencies for TypeScript)
COPY package*.json ./
RUN npm ci
RUN npm install
# Copy source code and build
COPY . .
@@ -18,7 +18,7 @@ WORKDIR /app
# Copy package files and install ONLY production dependencies
COPY package*.json ./
RUN npm ci --omit=dev
RUN npm install --omit=dev
# Copy built code from the builder stage
COPY --from=builder /app/dist ./dist