Increase the maximum size of input images to 20k x 20k px #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build | |
| on: | |
| push: | |
| tags: [ v* ] | |
| jobs: | |
| docker_back: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ vars.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push backend | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: true | |
| tags: ecotaxa/ecotaxa_back:${{github.ref_name}} | |
| file: ./docker/prod_image/Dockerfile | |
| - name: Build and push GPU backend | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: true | |
| tags: ecotaxa/ecotaxa_gpu_back:${{github.ref_name}} | |
| file: ./docker/gpu_prod_image/Dockerfile |