diff --git a/docker/frontend.Dockerfile b/docker/frontend.Dockerfile index 3cf7233..e75522f 100644 --- a/docker/frontend.Dockerfile +++ b/docker/frontend.Dockerfile @@ -10,7 +10,7 @@ WORKDIR /src FROM base AS build COPY frontend/package.json frontend/package-lock.json ./ -RUN npm ci +RUN npm ci --legacy-peer-deps COPY frontend/ . RUN npm run build