summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xDockerfile3
-rwxr-xr-xassets/setup10
2 files changed, 8 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 2c13134..8126a5a 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -48,7 +48,8 @@ RUN apt-get update -q \
vim \
nano \
patch \
- curl
+ curl \
+ telnet
# Copy assets
COPY RELEASE /
diff --git a/assets/setup b/assets/setup
index bd5e705..01e1221 100755
--- a/assets/setup
+++ b/assets/setup
@@ -49,18 +49,20 @@ echo "####################################################"
echo "[DBG] Test connection to https://packages.gitlab.com"
echo "####################################################"
+
+echo "################ IFCONFIG #######################"
sudo ifconfig
+echo "################ TELNET #######################"
+
telnet packages.gitlab.com 443
+echo "################ CURL #######################"
+
curl -v https://packages.gitlab.com/gpg.key
echo "####################################################"
-
-
-
-
wget -q -O - https://packages.gitlab.com/gpg.key | apt-key add -
apt-get update
apt-get install -yq --no-install-recommends ${RELEASE_PACKAGE}=${RELEASE_VERSION}