fix context

This commit is contained in:
Vri 🌈 2023-05-04 16:47:59 +02:00
parent 6c18026f5c
commit 00a4150aa0
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -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