From 3a14c8b16432069e38cd4a2d1f69c68df0da718f Mon Sep 17 00:00:00 2001 From: JandereDev Date: Tue, 12 Jul 2022 18:09:42 +0200 Subject: [PATCH] update docker workflows --- .github/workflows/docker.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 80f30ba..12d5e0a 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -42,7 +42,8 @@ jobs: name: Build and push - API uses: docker/build-push-action@v3 with: - context: ./api + context: . + dockerfile: ./api/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -81,7 +82,8 @@ jobs: name: Build and push - Web uses: docker/build-push-action@v3 with: - context: ./web + context: . + dockerfile: ./web/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -120,7 +122,8 @@ jobs: name: Build and push - Bridge uses: docker/build-push-action@v3 with: - context: ./bridge + context: . + dockerfile: ./bridge/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -159,7 +162,8 @@ jobs: name: Build and push - Bot uses: docker/build-push-action@v3 with: - context: ./bot + context: . + dockerfile: ./bot/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }}