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