How to make act utilize Docker BuildKit capabilities? #5983
Unanswered
GamePlayer-8
asked this question in
Q&A
Replies: 1 comment
|
The issue is that Try setting export DOCKER_BUILDKIT=1
actIf that doesn't help (act might not pass that env through to its internal docker build calls), you could also try configuring Docker daemon-level BuildKit. Add this to your Docker daemon config ( {
"features": {
"buildkit": true
}
}Then restart Docker and try again. There's also a |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
Whenever the Dockerfile within an
action.ymlfile is containingCOPY --chmod=755 [...], the run is failing.I've tried enabling the docker buildkit by referring to this documentation, but didn't worked.
The error is as follows:
Is there any way to make act utilize the buildkit?
All reactions