diff --git a/web/Dockerfile b/web/Dockerfile index 14b34d206..17e42f814 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -15,7 +15,8 @@ RUN npm ci --only=production # init build FROM node:alpine as build -COPY --from=install node_modules . +WORKDIR /usr/src/app/ +COPY --from=install /usr/src/app/node_modules ./node_modules # build COPY . .