diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index b4417f9..e1c5ab1 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -32,16 +32,6 @@ jobs: --output "type=image,push=false" \ --tag albertoxamin/bang:latest \ --file ./Dockerfile ./ - - - name: Docker Buildx (build armv-7) - run: | - docker buildx build \ - --cache-from "type=local,src=/tmp/.buildx-cache" \ - --cache-to "type=local,dest=/tmp/.buildx-cache" \ - --platform linux/arm/v7 \ - --output "type=image,push=false" \ - --tag albertoxamin/bang:latest \ - --file ./Dockerfile ./ - name: Login to DockerHub uses: docker/login-action@v1 @@ -53,7 +43,7 @@ jobs: run: | docker buildx build \ --cache-from "type=local,src=/tmp/.buildx-cache" \ - --platform linux/amd64,linux/arm64,linux/arm/v7 \ + --platform linux/amd64,linux/arm64 \ --output "type=image,push=true" \ --tag albertoxamin/bang:latest \ --file ./Dockerfile ./ diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a1bd5e8..82adb36 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -41,13 +41,3 @@ jobs: --output "type=image,push=false" \ --tag albertoxamin/bang:test \ --file ./Dockerfile ./ - - - name: Docker Buildx (test build armv-7) - run: | - docker buildx build \ - --cache-from "type=local,src=/tmp/.buildx-cache" \ - --cache-to "type=local,dest=/tmp/.buildx-cache" \ - --platform linux/arm/v7 \ - --output "type=image,push=false" \ - --tag albertoxamin/bang:test \ - --file ./Dockerfile ./