2022-07-19 15:09:45 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-07-19 15:28:45 +00:00
|
|
|
image: node:16.16.0-alpine3.16
|
2022-07-19 15:09:45 +00:00
|
|
|
commands:
|
2022-07-19 15:28:45 +00:00
|
|
|
- apk add --update python make g++
|
|
|
|
- rm -rf /var/cache/apk/*
|
2022-07-19 15:09:45 +00:00
|
|
|
- npm install
|
|
|
|
- vue-cli-service build --mode production
|