diff --git a/Dockerfile b/Dockerfile index 9e99ec3..586d29a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:alpine as build-stage WORKDIR /app COPY package*.json ./ RUN npm install -COPY /izaac-frontend . +COPY . . RUN npm run build # Stage 2: Serve the app from Nginx