diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e76bea0..e064c3e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,11 +13,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - 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 - 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 - 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 run: | docker push git.arinity.org/ctmesh/map:latest