mirror of
				https://github.com/ludeeus/action-shellcheck.git
				synced 2025-11-04 11:58:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			440 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			440 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.11.6
 | 
						|
 | 
						|
RUN apk add --no-cache shellcheck bash
 | 
						|
 | 
						|
COPY runaction.sh /action/runaction.sh
 | 
						|
ENTRYPOINT ["bash", "/action/runaction.sh"]
 | 
						|
 | 
						|
LABEL "name"="ShellCheck"
 | 
						|
LABEL "maintainer"="Ludeeus <hi@ludeeus.dev>"
 | 
						|
LABEL "version"="0.1.0"
 | 
						|
LABEL "com.github.actions.name"="ShellCheck"
 | 
						|
LABEL "com.github.actions.description"="GitHub action for ShellCheck."
 | 
						|
LABEL "com.github.actions.icon"="terminal"
 | 
						|
LABEL "com.github.actions.color"="black"
 |