diff --git a/build-all.sh b/build-all.sh index 6b24a2e..bfd1057 100755 --- a/build-all.sh +++ b/build-all.sh @@ -15,7 +15,7 @@ build_and_push(){ echo "Building ${REPO_URL}/${base}:${suite} for context ${build_dir}" docker build --rm --force-rm -t ${REPO_URL}/${base}:${suite} ${build_dir} || return 1 - img build -t ${REPO_URL}/${base}:${suite} ${build_dir} || return 1 + img build -t ${REPO_URL}/${base}:${suite} ${build_dir} || true # on successful build, push the image echo " --- " diff --git a/keepassxc/Dockerfile b/keepassxc/Dockerfile index 166926b..6581513 100644 --- a/keepassxc/Dockerfile +++ b/keepassxc/Dockerfile @@ -11,7 +11,7 @@ FROM alpine:latest LABEL maintainer "Christian Koep " -ENV KEEPASSXC_VERSION 2.2.4 +ENV KEEPASSXC_VERSION 2.3.0 RUN buildDeps=' \ automake \ diff --git a/vault/Dockerfile b/vault/Dockerfile index fb9c6cb..7aeee23 100644 --- a/vault/Dockerfile +++ b/vault/Dockerfile @@ -7,7 +7,7 @@ ENV GOPATH /go RUN apk --no-cache add \ ca-certificates -ENV VAULT_VERSION v0.9.4 +ENV VAULT_VERSION v0.9.5 RUN buildDeps=' \ bash \