diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index e6e845b..9f7e52e 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install ALL dependencies including devDeps for build -RUN npm ci +RUN npm install # Copy source code COPY . . diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 7154d32..1186b44 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy source code COPY . .