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:30:31 +00:00
|
|
|
- apk add --update --no-cache --virtual .gyp python3 make g++
|
2022-07-19 15:36:24 +00:00
|
|
|
- which python3
|
2022-07-19 15:28:45 +00:00
|
|
|
- rm -rf /var/cache/apk/*
|
2022-07-19 15:09:45 +00:00
|
|
|
- npm install
|
|
|
|
- vue-cli-service build --mode production
|