comparison docker/Dockerfile.backend @ 4467:1518289c5168

Added forgotten && in backend dockerfile.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 23 Sep 2019 15:41:46 +0200
parents 0ad75dd3d77c
children 7fb29172befa
comparison
equal deleted inserted replaced
4466:70444dce0b31 4467:1518289c5168
3 LABEL description="Contains software from gemma, for right holders and\ 3 LABEL description="Contains software from gemma, for right holders and\
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 add-apt-repository ppa:longsleep/golang-backports\ 8 RUN add-apt-repository ppa:longsleep/golang-backports &&\
9 apt-get update &&\ 9 apt-get update &&\
10 apt-get -y install --no-install-recommends libxml2-utils\ 10 apt-get -y install --no-install-recommends libxml2-utils\
11 make git golang-go \ 11 make git golang-go \
12 ca-certificates 12 ca-certificates
13 13