6 lines
		
	
	
	
		
			336 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			336 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| FROM nginx AS builder
 | |
| RUN apt-get update && apt-get install -y unzip
 | |
| RUN curl https://github.com/dchristl/macless-haystack/releases/download/v2.2.0/webapplication.zip -Lo /tmp/webapplication.zip && cd /tmp/ && unzip webapplication.zip && mv web/* /usr/share/nginx/html/
 | |
| 
 | |
| FROM nginx
 | |
| COPY --from=builder /usr/share/nginx /usr/share/nginx
 |