diff --git a/Dockerfile b/Dockerfile index e933d9c..d2bbeb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Frontend Build FROM node:lts AS build WORKDIR /app -COPY package*.json ./ +COPY frontend/package*.json ./ RUN npm install COPY frontend/ . RUN npm run build