-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Disable DOCKER_BUILDKIT #135
Conversation
With this change you have unadvertly broken all our builds in our company, relying in buildkit. I think using buildkit is legit (and needed to use things like "--mount"). |
@ajaest I am sorry to read that. To avoid that in the future, you should always stick to a specific version. eg: v6.0.0. Edits in bold: If time allows it, I will look for ways to make this action to work even with |
I'm not sure if v6.0.0 is supposed to be exactly the same as v6.0, but it seems that the https://github.com/whoan/docker-build-with-cache-action/releases/tag/v6.0 Edit: It seems that the version ˙˙v6.0.0˙ indeed doesn't contain this change (while |
Moreover the fix cannot be changed even from ENV variable because the script always override the settings. There would be much more better to put something like that.
To allow users to enable it if they want but keep it disabled by default. |
I am aware of your concerns guys. I will do my best to fix the action for you. Just patience that I am doing this in my free time just for love. |
Thanks @whoan, as you suggested I pinned version to v5.11.3 and now it is working again. It is true that caching is not working with DOCKER_BUILDKIT=1, but we didn't realize. Anyways, at least the build works and we are not in a hurry. |
Closes #131