From 923705c83b13686351358bf320a1d1acec1fbec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Faleiros?= Date: Thu, 9 Apr 2026 10:28:23 -0300 Subject: [PATCH] feat: initial commit of tiny-n8n middleware with CI/CD --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bebdf4c..9ec5d82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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