diff --git a/backend/Dockerfile b/backend/Dockerfile index 8ce4576..2fca1d1 100644 --- a/backend/Dockerfile +++ b/backend/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 . .