From 00a4150aa0b02e62c23fe4a588873e017c022796 Mon Sep 17 00:00:00 2001 From: vrifox <vrifox@vrifox.cc> Date: Thu, 4 May 2023 16:47:59 +0200 Subject: [PATCH] fix context --- .github/workflows/docker-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 77ea067..133fd05 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -23,27 +23,27 @@ jobs: - name: Build and push Base image uses: docker/build-push-action@v2 with: - context: /container/base/ + context: ./container/base/ push: true tags: codeforleipzig/stadtratmonitor-base:latest - name: Build and push Deploy image uses: docker/build-push-action@v2 with: - context: /container/deploy/ + context: ./container/deploy/ push: true tags: codeforleipzig/stadtratmonitor-deploy:latest - name: Build and push Develop image uses: docker/build-push-action@v2 with: - context: /container/develop/ + context: ./container/develop/ push: true tags: codeforleipzig/stadtratmonitor-develop:latest - name: Build and push Test image uses: docker/build-push-action@v2 with: - context: /container/test/ + context: ./container/test/ push: true tags: codeforleipzig/stadtratmonitor-test:latest \ No newline at end of file