* Prepare Dockerfile for GitHub Actions * Add Action * Add CI rules * Move docker files into the docker directory to prevent fetching build artifacts * Cache Docker layers Co-authored-by: aanper <mail@s3f.ru>
		
			
				
	
	
		
			12 lines
		
	
	
		
			217 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			217 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: 'Run in docker'
 | 
						|
inputs:
 | 
						|
  run:  # id of input
 | 
						|
    description: 'A command to run'
 | 
						|
    required: true
 | 
						|
    default: ''
 | 
						|
runs:
 | 
						|
  using: 'docker'
 | 
						|
  image: '../../../docker/Dockerfile'
 | 
						|
  args:
 | 
						|
    - ${{ inputs.run }}
 |