Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/dockerPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
- name: Check out the repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
# driver-opts: network=host
platforms: linux/amd64,linux/arm64

- name: Log in to Docker Hub
uses: docker/login-action@v3.3.0
with:
Expand All @@ -37,10 +43,12 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6.13.0
with:
platforms: linux/amd64,linux/arm64
context: Backend/
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

frontend:
name: Build and push Frontend image
runs-on: ubuntu-latest
Expand All @@ -53,7 +61,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
# driver-opts: network=host
platforms: linux/amd64,linux/arm64

- name: Log in to Docker Hub
Expand Down
Loading