Co-authored-by: mikolaj widla <mikolaj.widla@gmail.com> Co-authored-by: Adam Bem <adam.bem@zoho.eu> Reviewed-on: R11/release11-tools-web#81
		
			
				
	
	
		
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM nginx:stable-alpine
 | |
| 
 | |
| COPY ./tools/ /usr/share/nginx/html/tools/
 | |
| COPY ./assets/ /usr/share/nginx/html/assets/
 | |
| COPY ./index.html /usr/share/nginx/html
 | |
| 
 | |
| RUN mkdir -p /scripts
 | |
| COPY insert_version.sh /scripts/
 | |
| WORKDIR /scripts
 | |
| 
 | |
| RUN chmod +x insert_version.sh
 | |
| RUN ./insert_version.sh
 | |
| 
 | |
| 
 | |
| EXPOSE 80
 |