From dc877190ec92730e007e3949e80db91a4b37225d Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 30 Jul 2018 10:51:36 +1000 Subject: [PATCH] Gitlab CI: set DEBIAN_FRONTEND noninteractive for the Ubuntu images Because Godot doesn't care about tzdata, so waiting for him is pointless. Signed-off-by: Peter Hutterer --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a4beab3a..e9e89d5a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -275,11 +275,11 @@ fedora:27@docker-prep: # create a Dockerfile with our dependencies - echo "FROM ubuntu:$UBUNTU_VERSION" > Dockerfile - echo "WORKDIR /app" >> Dockerfile - - echo "RUN apt-get update" >> Dockerfile - - echo "RUN apt-get install -y software-properties-common" >> Dockerfile - - echo "RUN add-apt-repository universe" >> Dockerfile - - echo "RUN apt-get update" >> Dockerfile - - echo "RUN apt-get install -y $UBUNTU_DEBS" >> Dockerfile + - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get update" >> Dockerfile + - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common" >> Dockerfile + - echo "RUN DEBIAN_FRONTEND=noninteractive add-apt-repository universe" >> Dockerfile + - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get update" >> Dockerfile + - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get install -y $UBUNTU_DEBS" >> Dockerfile # create the docker image - docker build --tag $UBUNTU_DOCKER_IMAGE:latest --tag $UBUNTU_DOCKER_IMAGE:$CI_JOB_ID .