feat: initial commit of tiny-n8n middleware with CI/CD
Some checks failed
Build and Deploy / build-and-push (push) Failing after 27s
Some checks failed
Build and Deploy / build-and-push (push) Failing after 27s
This commit is contained in:
@@ -5,7 +5,7 @@ WORKDIR /app
|
|||||||
|
|
||||||
# Copy package files and install all dependencies (including devDependencies for TypeScript)
|
# Copy package files and install all dependencies (including devDependencies for TypeScript)
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm ci
|
RUN npm install
|
||||||
|
|
||||||
# Copy source code and build
|
# Copy source code and build
|
||||||
COPY . .
|
COPY . .
|
||||||
@@ -18,7 +18,7 @@ WORKDIR /app
|
|||||||
|
|
||||||
# Copy package files and install ONLY production dependencies
|
# Copy package files and install ONLY production dependencies
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm ci --omit=dev
|
RUN npm install --omit=dev
|
||||||
|
|
||||||
# Copy built code from the builder stage
|
# Copy built code from the builder stage
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --from=builder /app/dist ./dist
|
||||||
|
|||||||
Reference in New Issue
Block a user