Umur Alpay
Results
2
comments of
Umur Alpay
> @samueldusek If you use the similar to the one of the nextjs-example (https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile), you have to execute > > ``` > RUN yarn remove @sentry/nextjs > RUN yarn add...
Changing ``` COPY --from=deps /app/node_modules ./node_modules COPY . . ``` to ``` COPY . . COPY --from=deps /app/node_modules ./node_modules ``` fixes the issue and you don't need to remove and...