disable cache when building
All checks were successful
Build Docker containers / Build (push) Successful in 42s
All checks were successful
Build Docker containers / Build (push) Successful in 42s
This commit is contained in:
@ -13,11 +13,11 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Build web app image
|
- name: Build web app image
|
||||||
run: docker build -f webapp/Dockerfile -t git.arinity.org/ctmesh/map:latest .
|
run: docker build --no-cache -f webapp/Dockerfile -t git.arinity.org/ctmesh/map:latest .
|
||||||
- name: Build mqtt listener image
|
- name: Build mqtt listener image
|
||||||
run: docker build -f mqtt/Dockerfile -t git.arinity.org/ctmesh/map-mqtt:latest .
|
run: docker build --no-cache -f mqtt/Dockerfile -t git.arinity.org/ctmesh/map-mqtt:latest .
|
||||||
- name: Build cli image
|
- name: Build cli image
|
||||||
run: docker build -f cli/Dockerfile -t git.arinity.org/ctmesh/map-cli:latest .
|
run: docker build --no-cache -f cli/Dockerfile -t git.arinity.org/ctmesh/map-cli:latest .
|
||||||
- name: Push images
|
- name: Push images
|
||||||
run: |
|
run: |
|
||||||
docker push git.arinity.org/ctmesh/map:latest
|
docker push git.arinity.org/ctmesh/map:latest
|
||||||
|
Reference in New Issue
Block a user