diff --git a/infrastrucure/docker/build.py b/infrastrucure/docker/build.py index e603c1c..a220a9a 100644 --- a/infrastrucure/docker/build.py +++ b/infrastrucure/docker/build.py @@ -37,3 +37,9 @@ def drun(project): def test(project): build = get_devops_build(project) build.test() + +@task +def publish(project): + build = get_devops_build(project) + build.dockerhub_login() + build.dockerhub_publish()