changeset 528:076996a41c31

fix: Dockerfile.geoserv - adding "universe" to sources.list Adding universe to every line of sources.list leads with vanilla images to problems. https://wiki.ubuntuusers.de/sources.list/#Bionic There are empty lines, which would contain "universe". Adding "universe" at the end of lines containing "deb" at the beginning does the trick. The solution is valued as "good enough" for now.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 28 Aug 2018 11:50:13 +0200
parents 4a637b333417
children b07763345352
files docker/Dockerfile.geoserv
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/docker/Dockerfile.geoserv	Tue Aug 28 08:07:08 2018 +0200
+++ b/docker/Dockerfile.geoserv	Tue Aug 28 11:50:13 2018 +0200
@@ -1,11 +1,11 @@
 FROM ubuntu:bionic
 LABEL authors="tom@intevation.de"
 
-RUN sed -i 's/$/ universe/' /etc/apt/sources.list
+RUN sed -i 's/\(deb.*\)$/\1 universe/' /etc/apt/sources.list
 
 RUN apt-get update &&\
     apt-get -y install --no-install-recommends \
-            curl unzip openjdk-8-jre-headless tomcat8
+    curl unzip openjdk-8-jre-headless tomcat8
 
 ENV CATALINA_HOME /usr/share/tomcat8
 ENV CATALINA_BASE /var/lib/tomcat8