-
Notifications
You must be signed in to change notification settings - Fork 85
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
Unable to build web container #37
Comments
same here, a lot of warnings: Step 5/12 : RUN yarn -s |
Any update on this? Even I'm facing the same issue. |
i also facing this issue, is there anyone that already solve this? |
I am facing this problem anyone knows how to fix this issue? => ERROR [build 4/5] RUN yarn -s 49.9s
executor failed running [/bin/sh -c yarn -s]: exit code: 1 |
here, same, tried RUN yarn cache clean --all but still the same |
If you open the web/Dockerfile you can remove the '-s' from the RUN yarn commands to get the full error messages. In my case those were:
add Then in the build step, I also had the error:
Node 13 (used in Dockerfile) is only compatible with node-sass between version 4 and 5, but the application pulls 7. So edit the web/package.json node-sass version to This did the trick for me to get it running. But for the long term I would recommend the developer to upgrade to a newer node version and switch from 'node-sass' to 'sass', as the former is deprecated. |
Thank you sir :D |
Hi,
i've read closed issues about same problem, but nothing change.
Always the same during yarn -s process, i've got many unmet dependencies.
I tried to fix them manually, but nothing work that way.
Sure, it's about versions.
I'll wait the correct fix to give it another try.
Regards.
The text was updated successfully, but these errors were encountered: