Build and push a full docker image #98
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 and push a full docker image | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| custom_tag: | |
| type: string | |
| description: Docker image tag | |
| required: true | |
| default: "latest-full" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-tags: true | |
| fetch-depth: 0 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Build with Gradle | |
| run: ./gradlew build -x test | |
| docker-build-full: | |
| needs: [ build ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Create more disk space | |
| run: | | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf /opt/ghc | |
| sudo rm -rf "/usr/local/share/boost" | |
| sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-tags: true | |
| fetch-depth: 0 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| id: buildx | |
| with: | |
| buildkitd-flags: --debug | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME_LFOPPIANO }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN_LFOPPIANO }} | |
| - name: Build and push | |
| id: docker_build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: Dockerfile.delft | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| lfoppiano/grobid:latest-develop,lfoppiano/grobid:latest-full,lfoppiano/grobid:${{ github.event.inputs.custom_tag }} | |
| - name: Image digest | |
| run: echo ${{ steps.docker_build.outputs.digest }} | |
| - name: Docker Image Summary | |
| run: | | |
| echo "## Docker Image Uploaded Successfully" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "**Image Details:**" >> $GITHUB_STEP_SUMMARY | |
| echo "- **Registry:** docker.io" >> $GITHUB_STEP_SUMMARY | |
| echo "- **Image:** lfoppiano/grobid" >> $GITHUB_STEP_SUMMARY | |
| echo "- **Type:** Full build with DeLFT models (multi-arch: amd64, arm64)" >> $GITHUB_STEP_SUMMARY | |
| echo "- **Tags:**" >> $GITHUB_STEP_SUMMARY | |
| echo " - \`latest-develop\`" >> $GITHUB_STEP_SUMMARY | |
| echo " - \`latest-full\`" >> $GITHUB_STEP_SUMMARY | |
| echo " - \`${{ github.event.inputs.custom_tag }}\`" >> $GITHUB_STEP_SUMMARY | |
| echo "- **Digest:** \`${{ steps.docker_build.outputs.digest }}\`" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "**Usage:**" >> $GITHUB_STEP_SUMMARY | |
| echo "\`\`\`bash" >> $GITHUB_STEP_SUMMARY | |
| echo "docker pull lfoppiano/grobid:${{ github.event.inputs.custom_tag }}" >> $GITHUB_STEP_SUMMARY | |
| echo "\`\`\`" >> $GITHUB_STEP_SUMMARY |