From a95a7a20d38dda11568c3618a14b21e7958f7a5b Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 21 Sep 2022 17:10:00 +0800 Subject: [PATCH] =?UTF-8?q?build:=20:=E6=96=B0=E5=A2=9E=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E5=8F=91=E5=B8=83=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 7 +++++++ .drone.yml | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ Dockerfile | 10 ++++++++++ 3 files changed, 69 insertions(+) create mode 100644 .dockerignore create mode 100644 .drone.yml create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..438e12d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +.vscode/ +.idea/ +node_modules/ +dist/ +**/*.log +LICENSE +README.md diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a10618e --- /dev/null +++ b/.drone.yml @@ -0,0 +1,52 @@ +--- +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-india ./ && docker push harbor.picaiba.com/kszny/mes-ui:1.0.0-india + +- 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-india + - sleep 3 + - kubectl scale --replicas=1 deployment/mes-ui -n mes-india + depends_on: + - build + +- name: notification + image: lddsb/drone-dingtalk-message + settings: + token: 37a6483274f6de648a26d6710e4d8160eb7d471752abb2d70f8b7958af58fe11 + type: markdown + secret: SEC83b10f5fefd6127e4073360d4447bb7276a90386aeee1275b2797dd377a903e7 + tpl: http://res.picaiba.com/msg/msg.md + tips_title: 你有新消息 + success_color: 008800 + failure_color: FF0000 + +volumes: +- name: dockersock + host: + path: /var/run/docker.sock +- name: dockerconfig + host: + path: /root/.docker + +trigger: + branch: + - develop + event: + - push diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7600b86 --- /dev/null +++ b/Dockerfile @@ -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:prod + +FROM busybox +LABEL maintainer thomas.hairong@gmail.com +COPY --from=builder /app/dist /html \ No newline at end of file