diff options
Diffstat (limited to 'deployments')
-rw-r--r-- | deployments/Dockerfile | 2 | ||||
-rwxr-xr-x | deployments/build.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/deployments/Dockerfile b/deployments/Dockerfile index d22aeb11..961f6766 100644 --- a/deployments/Dockerfile +++ b/deployments/Dockerfile @@ -7,7 +7,7 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -FROM ubuntu:16.04 +FROM ubuntu:18.04 ARG HTTP_PROXY=${HTTP_PROXY} ARG HTTPS_PROXY=${HTTPS_PROXY} diff --git a/deployments/build.sh b/deployments/build.sh index f7deb547..f40542eb 100755 --- a/deployments/build.sh +++ b/deployments/build.sh @@ -50,6 +50,7 @@ function _push_image { local tag_name=${IMAGE_NAME}:${1:-latest} echo "Start push {$tag_name}" + docker push ${IMAGE_NAME}:latest docker tag ${IMAGE_NAME}:latest ${tag_name} docker push ${tag_name} } |