update version

Signed-off-by: Jess Frazelle <jess@oxide.computer>
This commit is contained in:
Jess Frazelle 2020-05-14 23:48:26 -07:00
parent 2a1ddf2e34
commit 76ab350d6b
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3
2 changed files with 6 additions and 5 deletions

View file

@ -49,8 +49,6 @@ get_latest() {
dir="zookeeper/3.5"
elif [[ "$dir" == "oauth2_proxy" ]]; then
dir="oauth2-proxy"
elif [[ "$dir" == "wireguard-linux-compat" ]]; then
dir="wireguard/install"
fi
# Change to upper case for grep
@ -62,7 +60,10 @@ get_latest() {
if [[ "$dir" == "wireguard-tools" ]]; then
dir="wireguard/install"
udir="WIREGUARD_TOOLS_VERSION"
udir="WIREGUARD_TOOLS"
elif [[ "$dir" == "wireguard-linux-compat" ]]; then
dir="wireguard/install"
udir="WIREGUARD"
fi
local current

View file

@ -23,9 +23,9 @@ RUN apt update && apt -y install \
&& rm -rf /var/lib/apt/lists/*
# https://git.zx2c4.com/wireguard-linux-compat/
ENV WIREGUARD_VERSION v0.0.20200128
ENV WIREGUARD_VERSION v1.0.20200506
# https://git.zx2c4.com/wireguard-tools
ENV WIREGUARD_TOOLS_VERSION v1.0.20200121
ENV WIREGUARD_TOOLS_VERSION v1.0.20200513
RUN set -x \
&& git clone --depth 1 --branch "${WIREGUARD_VERSION}" https://git.zx2c4.com/wireguard-linux-compat.git /wireguard \