feat: 👷 添加自动构建功能
This commit is contained in:
		
							
								
								
									
										8
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
.vscode/
 | 
			
		||||
.idea/
 | 
			
		||||
node_modules/
 | 
			
		||||
dist/
 | 
			
		||||
**/*.log
 | 
			
		||||
LICENSE
 | 
			
		||||
README.md
 | 
			
		||||
README.en.md
 | 
			
		||||
							
								
								
									
										41
									
								
								.drone.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								.drone.yml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,41 @@
 | 
			
		||||
---
 | 
			
		||||
kind: pipeline
 | 
			
		||||
type: docker
 | 
			
		||||
name: default
 | 
			
		||||
 | 
			
		||||
steps:
 | 
			
		||||
- name: build
 | 
			
		||||
  image: docker:dind
 | 
			
		||||
  volumes:
 | 
			
		||||
  - name: dockersock
 | 
			
		||||
    path: /var/run/docker.sock
 | 
			
		||||
  - name: dockerconfig
 | 
			
		||||
    path: /root/.docker
 | 
			
		||||
  commands:
 | 
			
		||||
  - docker build -t harbor.picaiba.com/kszny/mes-ui:1.0.0-tft ./ && docker push harbor.picaiba.com/kszny/mes-ui:1.0.0-tft
 | 
			
		||||
 | 
			
		||||
- name: deploy
 | 
			
		||||
  image: harbor.picaiba.com/tools/kubectl:1.19.8
 | 
			
		||||
  commands:
 | 
			
		||||
  - echo "172.27.0.20 lb.kubesphere.local" >> /etc/hosts
 | 
			
		||||
  #- echo "52.74.223.119 github.com" >> /etc/hosts
 | 
			
		||||
  - sleep 1
 | 
			
		||||
  - kubectl scale --replicas=0 deployment/mes-ui -n mes-tft
 | 
			
		||||
  - sleep 3
 | 
			
		||||
  - kubectl scale --replicas=1 deployment/mes-ui -n mes-tft
 | 
			
		||||
  depends_on:
 | 
			
		||||
  - build
 | 
			
		||||
 | 
			
		||||
volumes:
 | 
			
		||||
- name: dockersock
 | 
			
		||||
  host:
 | 
			
		||||
    path: /var/run/docker.sock
 | 
			
		||||
- name: dockerconfig
 | 
			
		||||
  host:
 | 
			
		||||
    path: /root/.docker
 | 
			
		||||
 | 
			
		||||
trigger:
 | 
			
		||||
  branch:
 | 
			
		||||
  - master
 | 
			
		||||
  event:
 | 
			
		||||
  - push
 | 
			
		||||
							
								
								
									
										10
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
FROM node:12 AS builder
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
ADD package.json /app/
 | 
			
		||||
RUN npm config set registry https://registry.npmmirror.com && npm install 
 | 
			
		||||
ADD . /app
 | 
			
		||||
RUN npm run build
 | 
			
		||||
 | 
			
		||||
FROM busybox
 | 
			
		||||
LABEL maintainer thomas.hairong@gmail.com
 | 
			
		||||
COPY --from=builder /app/dist /html
 | 
			
		||||
		Reference in New Issue
	
	Block a user