-
Notifications
You must be signed in to change notification settings - Fork 573
Closed
Description
Contributing guidelines
- I've read the contributing guidelines and wholeheartedly agree
I've found a bug and checked that ...
- ... the documentation does not mention anything about my problem
- ... there are no open or closed issues that are related to my problem
Description
The command :
docker buildx build \
--cache-from type=local,compression-level=2,src=/var/lib/docker/actions/$image \
--cache-to type=local,dest=/var/lib/docker/actions/$image,mode=max \
--file ./Dockerfile \
--tag hello:world
.
Throws a bad file descriptor
error
Expected behaviour
The docker image should be built, pushed and cached.
Pin pointing to buildx 0.15.2 in the setup-build-action
solves the issue with the exact same action configuration.
Actual behaviour
Caching fails and throws a bad file descriptor
error:
ERROR: could not lock /var/lib/docker/actions/$image/index.json.lock: bad file descriptor
When looking into runners /var/lib/docker/actions/$image
path, index.json.lock
exists with runner rights.
Buildx version
v0.16.0 10c9ff9
Docker info
NA
Builders list
NA
Configuration
FROM nginx
COPY ./index.html /usr/share/nginx/html
Build logs
#12 pushing manifest for [...] 0.6s done
#12 DONE 25.1s
#14 exporting cache to client directory
#14 preparing build cache for export
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 1.0s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.2s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.2s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.2s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.6s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 1.9s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.1s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.1s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.2s done
#14 writing layer sha256:[...]
#14 writing layer sha256:[...] 0.2s done
#14 writing config sha256:[...] 0.1s done
#14 writing cache manifest sha256:[...]
#14 preparing build cache for export 4.9s done
#14 writing cache manifest sha256:[...] 0.1s done
#14 DONE 4.9s
ERROR: could not lock /var/lib/docker/actions/$image/index.json.lock: bad file descriptor
Error: buildx failed with: ERROR: could not lock /var/lib/docker/actions/$image/index.json.lock: bad file descriptor
Additional info
Context:
Context:
- Buildx command runs within a Github Action runners in K8s.
- Buildx is installed through
docker/setup-buildx-action
Github Action, without theversion
param: Uses latest BuildX version docker-container driver - Docker is built and pushed through
docker/build-push-action
Github Action
yakobe