All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			281 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			281 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM registry.odit.services/hub/library/node:15.9.0-alpine3.13
 | 
						|
WORKDIR /app
 | 
						|
COPY . .
 | 
						|
RUN yarn
 | 
						|
RUN yarn build
 | 
						|
RUN yarn postbuild
 | 
						|
# final image
 | 
						|
FROM registry.odit.services/library/nginx-brotli:3.15
 | 
						|
COPY --from=0 /app/dist /usr/share/nginx/html
 | 
						|
COPY ./nginx.conf /etc/nginx/nginx.conf |