10 lines
166 B
YAML
10 lines
166 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: docker:latest
|
||
|
commands:
|
||
|
- docker build . --build-arg USER=$USER --build-arg TOKEN=$TOKEN
|