Skip to content

Commit

Permalink
chore: uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Jul 18, 2023
1 parent 3c6e392 commit 28d695e
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,33 +66,33 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new

# - name: Build Docker image (linux/arm/v7)
# uses: docker/build-push-action@v4
# with:
# platforms: linux/arm/v7
# context: .
# push: false
# load: true
# file: ./Dockerfile
# tags: ${{ env.IMAGE_NAME }}:linux-arm-v7
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Build Docker image (linux/arm/v7)
uses: docker/build-push-action@v4
with:
platforms: linux/arm/v7
context: .
push: false
load: true
file: ./Dockerfile
tags: ${{ env.IMAGE_NAME }}:linux-arm-v7
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new

# - name: Build Docker image (linux/arm64/v8)
# uses: docker/build-push-action@v4
# with:
# platforms: linux/arm64/v8
# context: .
# push: false
# load: true
# file: ./Dockerfile
# tags: ${{ env.IMAGE_NAME }}:linux-arm64-v8
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Build Docker image (linux/arm64/v8)
uses: docker/build-push-action@v4
with:
platforms: linux/arm64/v8
context: .
push: false
load: true
file: ./Dockerfile
tags: ${{ env.IMAGE_NAME }}:linux-arm64-v8
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new

- run: docker run --rm $IMAGE_NAME:linux-amd64 --version
# - run: docker run --rm $IMAGE_NAME:linux-arm-v7 --version
# - run: docker run --rm $IMAGE_NAME:linux-arm64-v8 --version
- run: docker run --rm $IMAGE_NAME:linux-arm-v7 --version
- run: docker run --rm $IMAGE_NAME:linux-arm64-v8 --version

# - name: Publish to Docker Hub
# uses: docker/build-push-action@v4
Expand Down

0 comments on commit 28d695e

Please sign in to comment.