mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
Drop buildkit version to workaround regression
This commit is contained in:
parent
748c4e86f6
commit
79adadb2d3
1 changed files with 5 additions and 3 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -43,12 +43,14 @@ jobs:
|
|||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2.2.1
|
||||
# Workaround to fix error:
|
||||
# failed to push: failed to copy: io: read/write on closed pipe
|
||||
# Workaround to fix two buildkit regressions
|
||||
# first one: failed to push: failed to copy: io: read/write on closed pipe
|
||||
# See https://github.com/docker/build-push-action/issues/761
|
||||
# second one: random cache misses
|
||||
# See https://github.com/docker/build-push-action/issues/735
|
||||
with:
|
||||
driver-opts: |
|
||||
image=moby/buildkit:v0.10.6
|
||||
image=moby/buildkit:v0.9.3
|
||||
|
||||
- name: Login to Docker Hub
|
||||
# Only push to Docker Hub when making a release
|
||||
|
|
Loading…
Reference in a new issue