forked from dperson/openvpn-client
-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julio Gutierrez
committed
Nov 19, 2021
1 parent
00c053e
commit bce88f3
Showing
6 changed files
with
37 additions
and
32 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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
FROM s6on/ubuntu:20.04 | ||
LABEL maintainer="Julio Gutierrez [email protected]" | ||
|
||
ARG NORDVPN_VERSION=3.12.0-1 | ||
ARG NORDVPN_VERSION=3.12.1-1 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update -y && \ | ||
apt install -y curl iputils-ping wireguard && \ | ||
RUN apt-get update -y && \ | ||
apt-get install -y curl iputils-ping wireguard && \ | ||
curl https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn-release_1.0.0_all.deb --output /tmp/nordrepo.deb && \ | ||
apt install -y /tmp/nordrepo.deb && \ | ||
apt update -y && \ | ||
apt install -y nordvpn${NORDVPN_VERSION:+=$NORDVPN_VERSION} && \ | ||
apt remove -y nordvpn-release && \ | ||
apt autoremove -y && \ | ||
apt autoclean -y && \ | ||
apt-get install -y /tmp/nordrepo.deb && \ | ||
apt-get update -y && \ | ||
apt-get install -y nordvpn${NORDVPN_VERSION:+=$NORDVPN_VERSION} && \ | ||
apt-get remove -y nordvpn-release && \ | ||
apt-get autoremove -y && \ | ||
apt-get autoclean -y && \ | ||
rm -rf \ | ||
/tmp/* \ | ||
/var/cache/apt/archives/* \ | ||
|
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
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