Rafael Bieze

Results 25 comments of Rafael Bieze

Maybe outputting the logs to a file would be more appropriate in these cases, with 50 packages building all at once you're never going to get good insight into what...

Take a look at this comment, and my comment afterward. https://github.com/vercel/turborepo/issues/2293#issuecomment-1288148253 It seems that the fix was applied incorrectly to the with-docker example (the installer stage doesn't have this fix...

They will be almost the same, if you do it yourself just call the command at the installer stage. If you're unsure if you will be able to, you can...

I think this is imperative for the usefulness of the dry run feature. A thing that could be considered is whether a `willCreateCache` field should be added, this could indicate...

I can also pick this up, or help out if necessary.

@sprohaszka I believe, though you have changed the code, you need to resolve the requested changes from gsoltis. Normally there is a button somewhere to do this on the requested...

I am experiencing a similar or the same issue, the issue occurs inside the build of a Dockerfile using the following command: `yarn dlx turbo prune --scope=@kurabu/api --docker` I tried...

@nathanhammond I have never heard of that before, I'll take a look at it right now for ya.

@nathanhammond Indeed what you seem to be describing is the issue. I ended up finding this repository: [https://github.com/Docker-Hub-frolvlad/docker-alpine-glibc/blob/master/Dockerfile](https://github.com/Docker-Hub-frolvlad/docker-alpine-glibc/blob/master/Dockerfile) It adds glibc to the alpine docker image, I applied the same...

@nathanhammond that works beautifully! ```Dockerfile FROM node:16.18-alpine AS base # 1.5.6-1.6.1 will all error # 1.5.5 will not ENV TURBO_VERSION 1.6.1 ENV YARN_VERSION 3.2.4 RUN apk add --no-cache libc6-compat RUN...