diff --git a/Dockerfile b/Dockerfile index 25c9459..4f2e005 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM node:lts-alpine as builder -WORKDIR /app +WORKDIR . COPY . ./ RUN npm install && npm run build FROM nginx:alpine -COPY --from=builder /app/dist /usr/share/nginx/html \ No newline at end of file +COPY --from=builder /dist /usr/share/nginx/html \ No newline at end of file