arheom commented on issue #1096:
URL: https://github.com/apache/camel-karavan/issues/1096#issuecomment-1931667343

   I forked the repo, to be able to easily test the flows and I managed to 
publish the devmode image with multi platform architecture and I could test it 
that it works well. I changed the code to this:
   
   ```
   jobs:
     docker:
   
       runs-on: ubuntu-latest
   
       steps:
         - name: Checkout repository
           uses: actions/checkout@v4
         - name: Set up QEMU
           uses: docker/setup-qemu-action@v3
         - name: Set up Docker Buildx
           uses: docker/setup-buildx-action@v3
         - name: Log in to the Container registry
           uses: docker/login-action@v3
           with:
             registry: ${{ env.REGISTRY }}
             username: ${{ github.actor }}
             password: ${{ secrets.GITHUB_TOKEN }}
         - name: Build and push Docker image
           uses: docker/build-push-action@v5
           with:
             context: ./karavan-web/docker
             platforms: linux/amd64,linux/arm64
             file: karavan-web/docker/Dockerfile.devmode
             push: true
             tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to