6 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			306 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| FROM nginx AS builder
 | |
| RUN apt update && apt install unzip
 | |
| RUN curl https://github.com/dchristl/macless-haystack/releases/download/v2.2.0/webapplication.zip -o /tmp/webapplication.zip && cd /usr/share/nginx/ && unzip /tmp/webapplication.zip
 | |
| 
 | |
| FROM nginx
 | |
| COPY --from=builder /usr/share/nginx /usr/share/nginx
 |