Bläddra i källkod

Merge pull request 'feat: 👷 添加自动构建功能' (#1) from cicd4tftfe into master

Reviewed-on: http://git.picaiba.com/mt-fe-group/tft-fe/pulls/1
pull/12/head
施海荣 1 år sedan
förälder
incheckning
781877fca5
3 ändrade filer med 59 tillägg och 0 borttagningar
  1. +8
    -0
      .dockerignore
  2. +41
    -0
      .drone.yml
  3. +10
    -0
      Dockerfile

+ 8
- 0
.dockerignore Visa fil

@@ -0,0 +1,8 @@
.vscode/
.idea/
node_modules/
dist/
**/*.log
LICENSE
README.md
README.en.md

+ 41
- 0
.drone.yml Visa fil

@@ -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
- 0
Dockerfile Visa fil

@@ -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

Laddar…
Avbryt
Spara