fix: minor tweaks, first trial of arm64 support

This commit is contained in:
Stefan Reimer 2022-10-11 14:59:40 +02:00
parent 7c3908d5a1
commit 59c8f09285
3 changed files with 7 additions and 1 deletions

View File

@ -12,7 +12,7 @@ RUN cd /etc/apk/keys && \
apk upgrade -U --available --no-cache && \
apk add --no-cache \
openvpn \
nftables \
iptables \
bash \
easy-rsa \
openvpn-auth-pam \

View File

@ -6,6 +6,8 @@
if [ "$DEBUG" == "1" ]; then
set -x
else
exec 2> /dev/null
fi
set -e

View File

@ -6,6 +6,8 @@
if [ "$DEBUG" == "1" ]; then
set -x
else
exec 2> /dev/null
fi
set -e
@ -20,3 +22,5 @@ easyrsa gen-dh
openvpn --genkey secret $EASYRSA_PKI/ta.key
easyrsa gen-crl
echo "Successfully bootstrapped PKI"