From d10deeea2fcd7cec642d25e55d17e8d46476722d Mon Sep 17 00:00:00 2001
From: Tim Jaacks <tim.jaacks@garz-fricke.com>
Date: Tue, 17 Nov 2020 16:17:57 +0100
Subject: [PATCH] Use docker image from GitLab's container registry

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0b035fb5..791463b8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,8 @@
 #-------------------------------------------------------------------------------
 # Global
 #-------------------------------------------------------------------------------
-image:
-  name: "python:3.9"
+image: "registry.gitlab.com/garz-fricke/yocto/ci-images/python:\
+          268f5989aebd85c7ae6bc32a630396f30ec3f79d"
 
 stages:
   - analyze
@@ -13,20 +13,11 @@ stages:
 pylint:
   stage: analyze
   timeout: 2m
-  before_script:
-    # FIXME: prepare docker image with modules already installed
-    - pip3 install furl
-    - pip3 install gitpython
-    - pip3 install lxml
-    - pip3 install python-gitlab
-    - pip3 install pylint
   script:
     - pylint --rcfile=pylintrc *.py
 
 black:
   stage: analyze
   timeout: 2m
-  before_script:
-    - pip3 install black
   script:
     - black --diff --check *.py
-- 
GitLab