From 6e7d266a720e2d19cfb80ef9994490f70ac8b57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Faleiros?= Date: Thu, 9 Apr 2026 10:30:20 -0300 Subject: [PATCH] fix: explicit package.json copy in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ec5d82..65cf372 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine AS builder WORKDIR /app # Copy package files and install all dependencies (including devDependencies for TypeScript) -COPY package*.json ./ +COPY package.json ./ RUN npm install # Copy source code and build @@ -17,7 +17,7 @@ FROM node:20-alpine WORKDIR /app # Copy package files and install ONLY production dependencies -COPY package*.json ./ +COPY package.json ./ RUN npm install --omit=dev # Copy built code from the builder stage