From b0d16b4c43bd678056d48100e31c7e157b818e92 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Thu, 17 Aug 2017 16:26:29 +0530 Subject: [PATCH] circle: upgrade build system packages - https://github.com/docker-library/docker/issues/72 --- bitnami/express/circle.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/bitnami/express/circle.yml b/bitnami/express/circle.yml index 72f86607115b..1574326ca00f 100644 --- a/bitnami/express/circle.yml +++ b/bitnami/express/circle.yml @@ -16,6 +16,10 @@ jobs: - checkout - setup_remote_docker: version: 17.06.0-ce + - run: + name: Upgrade system packages (workaround - https://github.com/docker-library/docker/issues/72) + command: | + apk upgrade --no-cache - run: name: Install dependencies command: | @@ -47,8 +51,13 @@ jobs: curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash - fi -deployment: - release: - tag: /^[0-9].*-r[0-9]+$/ - commands: - - echo "workaround make tags run in 2.0 - https://discuss.circleci.com/t/git-tag-deploys-in-2-0/9493/8" +workflows: + version: 2 + build-and-deploy: + jobs: + - build: + filters: + branches: + only: /.*/ + tags: + only: /^[0-9].*-r[0-9]+$/