From bcc5c18e6f223c56a3baa329e5abb20b3575e035 Mon Sep 17 00:00:00 2001
From: Frank Sauerburger <frank@sauerburger.com>
Date: Tue, 29 Aug 2017 16:43:39 +0200
Subject: [PATCH] Fix gitlab-ci syntax

Move LABEL to Dockerfile
---
 .gitlab-ci.yml | 4 +---
 Dockerfile     | 2 ++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 83e61fa..6dd3351 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,4 @@
-image: ${CI_REGISTRY_IMAGE}/ubuntu_python3:latest
-
-LABEL maintainer "frank@sauerburger.com"
+image: ${CI_REGISTRY_IMAGE}
 
 stages:
   - test
diff --git a/Dockerfile b/Dockerfile
index f766eb2..2b07365 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,8 @@
 # This image is intended for the git CI
 
 FROM ubuntu:16.04
+LABEL maintainer "frank@sauerburger.com"
+
 
 RUN apt-get update && apt-get install -y  \
   python3 python3-setuptools git recode\
-- 
GitLab