forked from kylemanna/docker-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Salvoxia/dev
Base image and OpenVPN update
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
# Tertiary credit for TAP/bridge adjusments: https://github.com/aktur/docker-openvpn | ||
|
||
# Smallest base image | ||
FROM alpine:3.19.0 | ||
FROM alpine:3.20 | ||
|
||
LABEL maintainer="Salvoxia <[email protected]>" | ||
|
||
# Testing: pamtester | ||
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \ | ||
apk add --update openvpn=2.6.8-r0 iptables curl bash easy-rsa openvpn-auth-pam google-authenticator pamtester libqrencode && \ | ||
apk add --update openvpn=2.6.10-r0 iptables curl bash easy-rsa openvpn-auth-pam google-authenticator pamtester libqrencode && \ | ||
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \ | ||
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/* | ||
|
||
|