mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
versions update
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
c9fefef1b1
commit
c19ed0daa7
|
@ -31,8 +31,8 @@ build_and_push(){
|
|||
sleep 15
|
||||
done
|
||||
|
||||
# also push the tag latest for "stable" tags
|
||||
if [[ "$suite" == "stable" ]]; then
|
||||
# also push the tag latest for "stable" (chrome) or "3.5" tags for zookeeper
|
||||
if [[ "$suite" == "stable" ]] || [[ "$suite" == "3.5" ]]; then
|
||||
docker tag ${REPO_URL}/${base}:${suite} ${REPO_URL}/${base}:latest
|
||||
docker push --disable-content-trust=false ${REPO_URL}/${base}:latest
|
||||
fi
|
||||
|
|
|
@ -38,6 +38,8 @@ get_latest() {
|
|||
dir="golang-softhsm2"
|
||||
elif [[ "$dir" == "bazel" ]]; then
|
||||
dir="gitiles"
|
||||
elif [[ "$dir" == "zookeeper" ]]; then
|
||||
dir="zookeeper/3.5"
|
||||
elif [[ "$dir" == "oauth2_proxy" ]]; then
|
||||
dir="oauth2-proxy"
|
||||
fi
|
||||
|
@ -47,9 +49,8 @@ get_latest() {
|
|||
if [[ "$tag" =~ "$current" ]] || [[ "$name" =~ "$current" ]] || [[ "$current" =~ "$tag" ]] || [[ "$current" == "master" ]]; then
|
||||
echo -e "\e[36m${dir}:\e[39m current ${current} | ${tag} | ${name}"
|
||||
else
|
||||
if [[ "$dir" != "zookeeper" ]]; then
|
||||
bad_versions+=( "${dir}" )
|
||||
fi
|
||||
# add to the bad versions
|
||||
bad_versions+=( "${dir}" )
|
||||
echo -e "\e[31m${dir}:\e[39m current ${current} | ${tag} | ${name} | https://github.com/${repo}/releases"
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ ENV GOPATH /go
|
|||
RUN apk --no-cache add \
|
||||
ca-certificates
|
||||
|
||||
ENV VAULT_VERSION v0.9.0
|
||||
ENV VAULT_VERSION v0.9.1
|
||||
|
||||
RUN buildDeps=' \
|
||||
bash \
|
||||
|
|
|
@ -17,7 +17,7 @@ RUN apk add --no-cache \
|
|||
libmnl-dev
|
||||
|
||||
# https://git.zx2c4.com/WireGuard/refs/
|
||||
ENV WIREGUARD_VERSION 0.0.20171211
|
||||
ENV WIREGUARD_VERSION 0.0.20171221
|
||||
|
||||
RUN set -x \
|
||||
&& apk add --no-cache --virtual .build-deps \
|
||||
|
|
Loading…
Reference in New Issue
Block a user