diff --git a/Dockerfile b/Dockerfile index 6dbf39bf..4c1ae746 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM alpine:3.12 as prep +FROM alpine:3.14 as prep LABEL maintainer="Tomohisa Kusano " \ contributors="See CONTRIBUTORS file " -ENV BUILD_VERSION=4.34-9745-beta \ - SHA256_SUM=a2d7951f4fafcef96ab8341a948a8d09ca02030e4161c5e90a34882aa8b34224 +ENV BUILD_VERSION=4.36-9754-beta \ + SHA256_SUM=6caec01178bdb971705ce8d5524af6f3b696e6fe1965f7c93a77d11e28fa3f0e RUN wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/archive/v${BUILD_VERSION}.tar.gz \ && echo "${SHA256_SUM} v${BUILD_VERSION}.tar.gz" | sha256sum -c \ diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 72893f9f..fcebeff2 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM alpine:3.12 as prep +FROM alpine:3.14 as prep LABEL maintainer="Tomohisa Kusano " \ contributors="See CONTRIBUTORS file " @@ -12,7 +12,7 @@ RUN wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/archive/v${BUILD_VE && tar -x -C /usr/local/src/ -f v${BUILD_VERSION}.tar.gz \ && rm v${BUILD_VERSION}.tar.gz -FROM alpine:3.12 as build +FROM alpine:3.14 as build COPY --from=prep /usr/local/src /usr/local/src @@ -26,7 +26,7 @@ RUN apk add -U build-base ncurses-dev openssl-dev readline-dev zip zlib-dev \ && touch /usr/vpnserver/vpn_server.config \ && zip -r9 /artifacts.zip /usr/vpn* /usr/bin/vpn* -FROM alpine:3.12 +FROM alpine:3.14 COPY --from=build /artifacts.zip / diff --git a/Dockerfile.debian b/Dockerfile.debian index ef2a2a76..be414bc3 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -1,10 +1,10 @@ -FROM alpine:3.12 as prep +FROM alpine:3.14 as prep LABEL maintainer="Tomohisa Kusano " \ contributors="See CONTRIBUTORS file " -ENV BUILD_VERSION=4.34-9745-beta \ - SHA256_SUM=a2d7951f4fafcef96ab8341a948a8d09ca02030e4161c5e90a34882aa8b34224 +ENV BUILD_VERSION=4.36-9754-beta \ + SHA256_SUM=6caec01178bdb971705ce8d5524af6f3b696e6fe1965f7c93a77d11e28fa3f0e RUN wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/archive/v${BUILD_VERSION}.tar.gz \ && echo "${SHA256_SUM} v${BUILD_VERSION}.tar.gz" | sha256sum -c \ diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index de361785..14116df1 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -1,10 +1,10 @@ -FROM alpine:3.12 as prep +FROM alpine:3.14 as prep LABEL maintainer="Tomohisa Kusano " \ contributors="See CONTRIBUTORS file " -ENV BUILD_VERSION=4.34-9745-beta \ - SHA256_SUM=a2d7951f4fafcef96ab8341a948a8d09ca02030e4161c5e90a34882aa8b34224 +ENV BUILD_VERSION=4.36-9754-beta \ + SHA256_SUM=6caec01178bdb971705ce8d5524af6f3b696e6fe1965f7c93a77d11e28fa3f0e RUN wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/archive/v${BUILD_VERSION}.tar.gz \ && echo "${SHA256_SUM} v${BUILD_VERSION}.tar.gz" | sha256sum -c \ diff --git a/README.md b/README.md index df8cfcdf..9bab8c2e 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ * "Simple" as in no configuration parameter is needed for a single-user SecureNAT setup. ## Image Tags -Base OS Image | Latest Stable ([v4.34-9745-beta](https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/tree/v4.34-9745-beta)) | Previous Base | [v4.29-9680-rtm](https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/tree/v4.29-9680-rtm) +Base OS Image | Latest Stable ([v4.36-9754-beta](https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/tree/v4.36-9754-beta)) | Previous Base | [v4.29-9680-rtm](https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/tree/v4.29-9680-rtm) ------------- | -- | -- | -- -`centos:8` | **`:latest`**, `:centos`, `:9745`, `:4.34`, `:9745-centos`, `:4.34-centos` | `centos:7` | `:9680`, `:4.29`, `:9680-centos`, `4.29-centos` -`debian:10-slim` | `:debian`, `:9745-debian`, `:4.34-debian` | `debian:10-slim` | `:9680-debian`, `:4.29-debian` -`alpine:3.12` | `:alpine`, `:9745-alpine`, `:4.34-alpine` | `alpine:3.9` | `:9680-alpine`, `:4.29-alpine` -`ubuntu:20.04` | `:ubuntu`, `:9745-ubuntu`, `:4.34-ubuntu` | `ubuntu:18.04` | `:9680-ubuntu`, `:4.29-ubuntu` +`centos:8` | **`:latest`**, `:centos`, `:9754`, `:4.36`, `:9754-centos`, `:4.36-centos` | `centos:7` | `:9680`, `:4.29`, `:9680-centos`, `4.29-centos` +`debian:10-slim` | `:debian`, `:9754-debian`, `:4.36-debian` | `debian:10-slim` | `:9680-debian`, `:4.29-debian` +`alpine:3.14` | `:alpine`, `:9754-alpine`, `:4.36-alpine` | `alpine:3.9` | `:9680-alpine`, `:4.29-alpine` +`ubuntu:20.04` | `:ubuntu`, `:9754-ubuntu`, `:4.36-ubuntu` | `ubuntu:18.04` | `:9680-ubuntu`, `:4.29-ubuntu` ## Setup - L2TP/IPSec PSK + OpenVPN diff --git a/push-tags.sh b/push-tags.sh index 6b4f4e6a..4b36e81e 100755 --- a/push-tags.sh +++ b/push-tags.sh @@ -1,8 +1,8 @@ #!/bin/bash set -x -SE_VERSION="4.34" -SE_REVISION="9745" +SE_VERSION="4.36" +SE_REVISION="9754" BASE_TAGS="latest centos debian alpine ubuntu" diff --git a/tests/prepare-ipsec.sh b/tests/prepare-ipsec.sh index 90b54f4c..3a3b1ed9 100644 --- a/tests/prepare-ipsec.sh +++ b/tests/prepare-ipsec.sh @@ -62,6 +62,6 @@ EOF mkdir -p /var/run/xl2tpd touch /var/run/xl2tpd/l2tp-control -service strongswan restart +service ipsec restart service xl2tpd restart