Add ci, update README add dockerignore.
This commit is contained in:
parent
336685e63b
commit
2b7cbe1f94
3 changed files with 47 additions and 0 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
ci/
|
||||
README.md
|
|
@ -10,3 +10,7 @@ Currently only the docker registry is supported.
|
|||
|
||||
- username: Optional. The username used to log into the registry.
|
||||
- password: Optional. The password used to log into the registry.
|
||||
|
||||
## Example
|
||||
|
||||
To view a simple invocation just look at [pipeline.yml](ci/pipeline.yml).
|
||||
|
|
41
ci/pipeline.yml
Normal file
41
ci/pipeline.yml
Normal file
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
resources:
|
||||
- name: source
|
||||
type: git
|
||||
source:
|
||||
uri: https://gitea.redxef.at/redxef/concourse-buildkit
|
||||
branch: master
|
||||
|
||||
jobs:
|
||||
- name: build-push
|
||||
plan:
|
||||
- get: source
|
||||
trigger: true
|
||||
- task: build
|
||||
privileged: true
|
||||
config:
|
||||
platform: linux
|
||||
image_resource:
|
||||
type: registry-image
|
||||
source:
|
||||
repository: redxef/concourse-buildkit
|
||||
inputs:
|
||||
- name: source
|
||||
path: .
|
||||
params:
|
||||
username: ((docker.username))
|
||||
password: ((docker.password))
|
||||
run:
|
||||
path: entrypoint.sh
|
||||
args:
|
||||
- build
|
||||
- --frontend
|
||||
- dockerfile.v0
|
||||
- --local
|
||||
- context=.
|
||||
- --local
|
||||
- dockerfile=.
|
||||
- --opt
|
||||
- platform=aarch64,arm,ppc64le,s390x,x86_64
|
||||
- --output
|
||||
- type=image,name=docker.io/redxef/concourse-buildkit,push=true
|
Reference in a new issue