diff --git a/backend/Dockerfile b/backend/Dockerfile index 161bcec..088a3b9 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,7 +2,6 @@ FROM node:23-alpine AS build WORKDIR /app COPY ./package.json /app/ -COPY ./package-lock.json /app/ RUN pwd && ls -al RUN npm install COPY . . diff --git a/frontend/Dockerfile b/frontend/Dockerfile index fbac030..bbf9a8d 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,7 +1,7 @@ # Build Stage FROM node:23-alpine AS build WORKDIR /app -COPY ./package*.json ./ +COPY ./package.json /app/ RUN ls -al RUN npm install COPY . .