comparison docker/Dockerfile.backend @ 4601:b61979b74d82

Fix backend docker build No interaction possible during docker build.
author Tom Gottfried <tom@intevation.de>
date Wed, 09 Oct 2019 18:09:37 +0200
parents 7fb29172befa
children
comparison
equal deleted inserted replaced
4600:75d1126f7299 4601:b61979b74d82
4 licensing infos, see https://hg.intevation.de/gemma ." 4 licensing infos, see https://hg.intevation.de/gemma ."
5 5
6 RUN sed -i 's/\(deb.*\)$/\1 universe/' /etc/apt/sources.list 6 RUN sed -i 's/\(deb.*\)$/\1 universe/' /etc/apt/sources.list
7 7
8 RUN apt-get update && apt-get install -y software-properties-common 8 RUN apt-get update && apt-get install -y software-properties-common
9 RUN add-apt-repository ppa:longsleep/golang-backports &&\ 9 RUN add-apt-repository -y ppa:longsleep/golang-backports &&\
10 apt-get update &&\ 10 apt-get update &&\
11 apt-get -y install --no-install-recommends libxml2-utils\ 11 apt-get -y install --no-install-recommends libxml2-utils\
12 make git golang-go \ 12 make git golang-go \
13 ca-certificates 13 ca-certificates
14 14