From bee16f2835c07cbe79ef4485b22def6834e4e2f7 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Wed, 7 Aug 2019 04:23:14 +0200
Subject: [PATCH] Trying apt-get instead.

---
 .gitlab-ci.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7a57bd4..6e3af19 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,8 @@ cache:
 
 test:
   script:
-  - apk --update add nodejs npm
+  - apt-get update -y
+  - apt-get install -y nodejs npm
   - npm install -g bower
   - bundle install --path vendor
   - bower install
@@ -16,7 +17,8 @@ test:
 
 pages:
   script:
-  - apk --update add nodejs npm
+  - apt-get update -y
+  - apt-get install -y nodejs npm
   - npm install -g bower
   - bundle install --path vendor
   - bower install
-- 
GitLab