You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
platform: linux
|
|
|
|
image_resource:
|
|
|
|
type: registry-image
|
|
|
|
source:
|
|
|
|
repository: concourse/oci-build-task
|
|
|
|
tag: 0.10.0
|
|
|
|
username: ((docker-hub-username))
|
|
|
|
password: ((docker-hub-password))
|
|
|
|
inputs:
|
|
|
|
- name: ci-images-git-repo
|
|
|
|
outputs:
|
|
|
|
- name: image
|
|
|
|
caches:
|
|
|
|
- path: ci-image-cache
|
|
|
|
params:
|
|
|
|
CONTEXT: ci-images-git-repo/ci/images
|
|
|
|
DOCKERFILE: ci-images-git-repo/ci/images/ci-image/Dockerfile
|
|
|
|
DOCKER_HUB_AUTH: ((docker-hub-auth))
|
|
|
|
run:
|
|
|
|
path: /bin/sh
|
|
|
|
args:
|
|
|
|
- "-c"
|
|
|
|
- |
|
|
|
|
mkdir -p /root/.docker
|
|
|
|
cat > /root/.docker/config.json <<EOF
|
|
|
|
{ "auths": { "https://index.docker.io/v1/": { "auth": "$DOCKER_HUB_AUTH" }}}
|
|
|
|
EOF
|
|
|
|
build
|
|
|
|
|