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 upgrade -U --available --no-cache && \
apk add --no-cache \ apk add --no-cache \
openvpn \ openvpn \
nftables \ iptables \
bash \ bash \
easy-rsa \ easy-rsa \
openvpn-auth-pam \ openvpn-auth-pam \

View File

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

View File

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