Update docker build for federated image
This commit is contained in:
parent
66dce3dd63
commit
7e4dbe900b
1 changed files with 12 additions and 18 deletions
|
@ -1,31 +1,25 @@
|
||||||
from os import environ
|
from os import environ
|
||||||
from pybuilder.core import task, init
|
from pybuilder.core import task, init
|
||||||
from ddadevops import *
|
from ddadevops import *
|
||||||
import logging
|
|
||||||
|
|
||||||
name = 'c4k-forgejo-fed'
|
name = 'c4k-forgejo-fed'
|
||||||
MODULE = 'docker'
|
MODULE = 'docker'
|
||||||
PROJECT_ROOT_PATH = '../..'
|
PROJECT_ROOT_PATH = '../..'
|
||||||
|
|
||||||
class MyBuild(DevopsDockerBuild):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@init
|
@init
|
||||||
def initialize(project):
|
def initialize(project):
|
||||||
project.build_depends_on('ddadevops>=0.15.5')
|
input = {
|
||||||
stage = 'prod'
|
"name": name,
|
||||||
dockerhub_user = environ.get('DOCKERHUB_USER')
|
"module": MODULE,
|
||||||
if not dockerhub_user:
|
"stage": "notused",
|
||||||
dockerhub_user = gopass_field_from_path('meissa/web/docker.com', 'login')
|
"project_root_path": PROJECT_ROOT_PATH,
|
||||||
dockerhub_password = environ.get('DOCKERHUB_PASSWORD')
|
"build_types": ["IMAGE"],
|
||||||
if not dockerhub_password:
|
"mixin_types": [],
|
||||||
dockerhub_password = gopass_password_from_path('meissa/web/docker.com')
|
}
|
||||||
tag = environ.get('CI_COMMIT_TAG')
|
|
||||||
if not tag:
|
project.build_depends_on('ddadevops>=4.0.0-dev')
|
||||||
tag = get_tag_from_latest_commit()
|
|
||||||
config = create_devops_docker_build_config(
|
build = DevopsImageBuild(project, input)
|
||||||
stage, PROJECT_ROOT_PATH, MODULE, dockerhub_user, dockerhub_password, docker_publish_tag=tag)
|
|
||||||
build = MyBuild(project, config)
|
|
||||||
build.initialize_build_dir()
|
build.initialize_build_dir()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue