blob: 0c85cd794628eb3641e9bdbc44d00c075583a7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Chef Expeditor uses this file to build the chef/chef Docker image using Dobi (dnephin/dobi)
#
# If you wish to build the chef-infra-client Docker image, you do not need to use this file.
# You can build the Docker image for yourself by simply running:
#
# docker build .
#
# For more information on how this file is used, please check out the Chef Expeditor docs:
# https://expeditor.chef.io/docs/pipelines/docker/
image=chef:
image: '{env.IMAGE_REGISTRY}/chef'
context: .
tags:
- '{env.EXPEDITOR_VERSION}'
args:
VERSION: '{env.EXPEDITOR_VERSION}'
CHANNEL: unstable
annotations:
tags:
- expeditor:default-tags={{channel}}
- expeditor:final-channel-tags=latest,{{major}},{{major}}.{{minor}}
|