19 lines
		
	
	
		
			340 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			340 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Docker image CI
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    paths:
 | 
						|
      - app/Dockerfile
 | 
						|
      - app/requirements.txt
 | 
						|
      - .github/workflows/docker_image_ci.yml
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - name: Build the Docker image
 | 
						|
        run: |
 | 
						|
          cd app
 | 
						|
          docker build . -f Dockerfile
 |