chore: Update Docker build workflow for reliability improvements (#6760)
* fix: Update Docker build workflow to use Wandalen/wretry.action for improved reliability * fix: Remove attempt limit and delay from Docker build workflow * fix: Add comment to clarify provenance setting in Docker build workflow
This commit is contained in:
parent
51e3121d03
commit
d545e8d302
1 changed files with 31 additions and 25 deletions
56
.github/workflows/docker-build.yml
vendored
56
.github/workflows/docker-build.yml
vendored
|
|
@ -205,15 +205,17 @@ jobs:
|
|||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and Push to Docker Hub
|
||||
uses: docker/build-push-action@v6
|
||||
uses: Wandalen/wretry.action@master
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
file: ${{ needs.setup.outputs.file }}
|
||||
tags: ${{ needs.setup.outputs.docker_tags }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
action: docker/build-push-action@v6
|
||||
with: |
|
||||
context: .
|
||||
push: true
|
||||
file: ${{ needs.setup.outputs.file }}
|
||||
tags: ${{ needs.setup.outputs.docker_tags }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
||||
- name: Login to Github Container Registry
|
||||
uses: docker/login-action@v3
|
||||
|
|
@ -223,15 +225,17 @@ jobs:
|
|||
password: ${{ secrets.TEMP_GHCR_TOKEN}}
|
||||
|
||||
- name: Build and push to Github Container Registry
|
||||
uses: docker/build-push-action@v6
|
||||
uses: Wandalen/wretry.action@master
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
file: ${{ needs.setup.outputs.file }}
|
||||
tags: ${{ needs.setup.outputs.ghcr_tags }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
action: docker/build-push-action@v6
|
||||
with: |
|
||||
context: .
|
||||
push: true
|
||||
file: ${{ needs.setup.outputs.file }}
|
||||
tags: ${{ needs.setup.outputs.ghcr_tags }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
||||
build_components:
|
||||
if: ${{ inputs.release_type == 'main' }}
|
||||
|
|
@ -287,16 +291,18 @@ jobs:
|
|||
run: sleep 120
|
||||
|
||||
- name: Build and push ${{ matrix.component }}
|
||||
uses: docker/build-push-action@v6
|
||||
uses: Wandalen/wretry.action@master
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
build-args: |
|
||||
LANGFLOW_IMAGE=${{ matrix.langflow_image }}
|
||||
file: ${{ matrix.dockerfile }}
|
||||
tags: ${{ matrix.tags }}
|
||||
# provenance: false will result in a single manifest for all platforms which makes the image pullable from arm64 machines via the emulation (e.g. Apple Silicon machines)
|
||||
provenance: false
|
||||
action: docker/build-push-action@v6
|
||||
with: |
|
||||
context: .
|
||||
push: true
|
||||
build-args: |
|
||||
LANGFLOW_IMAGE=${{ matrix.langflow_image }}
|
||||
file: ${{ matrix.dockerfile }}
|
||||
tags: ${{ matrix.tags }}
|
||||
# provenance: false will result in a single manifest for all platforms which makes the image pullable from arm64 machines via the emulation (e.g. Apple Silicon machines)
|
||||
provenance: false
|
||||
|
||||
restart-space:
|
||||
name: Restart HuggingFace Spaces
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue