Update dependecies (backport #5595) #51
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 & Run Docker Image | |
| on: | |
| pull_request: | |
| # Only kick workflow if docker files or this workflow are changed | |
| paths: | |
| - 'docker/**' | |
| - '.github/workflows/docker-image.yml' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Fetch full history including branches and tags | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Docker image | |
| run: docker build --rm --build-arg user=$(id -un) --build-arg uid=$(id -u) -f ./docker/image/Dockerfile -t test-image:latest . | |
| - name: Run container and verify | |
| run: | | |
| docker run --rm --user $(id -u):$(id -g) -v $(pwd):/tmp/doc_repository test-image:latest |