-
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 #69 from leojonathanoh/enhancement/bump-openvpn-2.…
…5.8-variants-to-2.5.10-openvpn-2.6.8-variants-to-2.6.11-and-openvpn-2.6.11-variants-to-2.6.12 Enhancement: Bump openvpn 2.5.8 variants to 2.5.10, openvpn 2.6.8 variants to 2.6.11, and openvpn 2.6.11 variants to 2.6.12
- Loading branch information
Showing
21 changed files
with
2,098 additions
and
70 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
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM alpine:3.17 | ||
|
||
RUN set -eux; \ | ||
apk add --no-cache openvpn~=2.5.10 iptables; \ | ||
# Workaround openvpn --version exiting with non-zero exit code on openvpn <= 2.4.x | ||
openvpn --version | grep -A100 -B100 2.5.10 | ||
|
||
COPY docker-entrypoint.sh /docker-entrypoint.sh | ||
RUN chmod +x /docker-entrypoint.sh | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] |
Oops, something went wrong.