-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A new problem with yarn has cropped up #651
Comments
Also seeing this in node:carbon-slim |
As workaround I implemented the specific node image version just need to downgrade one version |
looks like the dockerfile is adding && mkdir -p /opt/yarn \ which is making the symbolic link command of ln -s /opt/yarn-v$YARN_VERSION /opt/yarn |
looks like reverting |
Here's the docker hub PR that should resolve this: |
Off by one char there, this is the link: docker-library/official-images#4137 |
ugh..thanks |
I'll close this as well. Will reopen if it still doesn't work after that is merged and released |
There was an upsteam issue where some node docker containers were released without yarn. The solution seems to be to wait until a fix is pushed. nodejs/docker-node#651 Alternatively, there's some ENV we can maybe set if we still here.
Earlier this morning, all of our builds and deploys started mysteriously failing. It turns out that yarn vanished from a docker container we were using, and then lots of people's builds started failing. Here's the relevant github issue: - nodejs/docker-node#651 Here's a tweet from circleci with a workaround: - https://twitter.com/circleci/status/974703363542495232 This workaround gives us yarn back, but it's not able to globally install `now`, so I've installed that locally and then am just calling the local file to run the deployment. Got our green checkmarks back finally, so all systems go.
When using the plain node:8 or node:9 docker using npm install -g yarn no longer works. There is some kind of left over link in /usr/local/bin/yarn but no complete yarn install. So you get an error
But executing
shows yarn is not installed.
Thanks
Andy
The text was updated successfully, but these errors were encountered: