All checks were successful
		
		
	
	release-tag / release-image (push) Successful in 44s
				
			Reviewed-on: #1 Co-authored-by: Alexander Lazarenko <kerblif@unprism.ru> Co-committed-by: Alexander Lazarenko <kerblif@unprism.ru>
		
			
				
	
	
		
			21 lines
		
	
	
		
			293 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			293 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:lts-alpine AS builder
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY package.json package-lock.json ./
 | |
| 
 | |
| RUN npm ci
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| RUN npm run build
 | |
| 
 | |
| FROM nginx:alpine
 | |
| 
 | |
| COPY nginx.conf /etc/nginx/conf.d/default.conf
 | |
| 
 | |
| COPY --from=builder /app/dist /usr/share/nginx/html
 | |
| 
 | |
| EXPOSE 80
 | |
| 
 | |
| CMD ["nginx", "-g", "daemon off;"] |