Skip to content

Commit

Permalink
removing qemu and arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
John Kennedy committed Feb 3, 2021
1 parent ee38f47 commit 307b8b6
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,14 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Build and Push Image
uses: docker/build-push-action@v2.2.2
with:
context: .
file: Dockerfile.prod.frontend
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true

build_web:
Expand All @@ -98,17 +95,14 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Build and Push Image
uses: docker/build-push-action@v2.2.2
with:
context: .
file: Dockerfile.prod.backend.web
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true

build_api:
Expand All @@ -132,15 +126,12 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Build and Push Image
uses: docker/build-push-action@v2.2.2
with:
context: .
file: Dockerfile.prod.backend.api
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true

0 comments on commit 307b8b6

Please sign in to comment.