From b7f45727c4de52eb9d8ba8b0ff3a1cf0f92f1502 Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@ie.suberic.net>
Date: Thu, 12 Jan 2017 21:54:27 +0000
Subject: [PATCH] Use lyda/golang:1.7 image for now.

Network is insanely slow tonight (hello snow). So building this to
cache the install of mysql-client and the install of golint.
The latter issue was noted and deliberately not fixed in
https://github.com/docker-library/golang/issues/102 .

Sigh.
---
 .gitlab-ci.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d1145d87..1de19a6c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,12 +1,10 @@
-image: golang:1.7
+image: lyda/golang:1.7
 
 variables:
   MYSQL_ROOT_PASSWORD: "password"
   MYSQL_TEST: "true"
 
 before_script:
-  - go get -v github.com/golang/lint/golint
-  - apt-get update && apt-get install mysql-client
   - mysql -uroot -p$MYSQL_ROOT_PASSWORD -hmysql < db/seed.sql
 
 services:
-- 
GitLab