28 lines
498 B
YAML
28 lines
498 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/cappyzawa/concourse-pipeline-jsonschema/master/concourse_jsonschema.json#/definitions/TaskConfig
|
|
---
|
|
platform: linux
|
|
|
|
image_resource:
|
|
name: image
|
|
type: registry-image
|
|
source:
|
|
repository: concourse/oci-build-task
|
|
tag: latest
|
|
|
|
inputs:
|
|
- name: repo
|
|
|
|
outputs:
|
|
- name: image
|
|
|
|
caches:
|
|
- path: cache
|
|
- path: /var/cache
|
|
|
|
params:
|
|
CONTEXT: ((context))
|
|
DOCKERFILE: ((dockerfile))
|
|
TARGET: ((target))
|
|
|
|
run:
|
|
path: build
|