comparison docker/Dockerfile.spa @ 3999:ffc822700056

For whatever reasons yarn now needs git to fetch packages
author Tom Gottfried <tom@intevation.de>
date Wed, 17 Jul 2019 18:39:18 +0200
parents 2241f8710dcc
children da04fa72cee8
comparison
equal deleted inserted replaced
3998:ffafd5fa7c3a 3999:ffc822700056
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 &&\ 8 RUN apt-get update &&\
9 apt-get -y install --no-install-recommends \ 9 apt-get -y install --no-install-recommends \
10 curl ca-certificates gnupg nodejs make mercurial 10 curl ca-certificates gnupg nodejs make mercurial git
11 11
12 # Install yarn 12 # Install yarn
13 RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\ 13 RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\
14 echo 'deb https://dl.yarnpkg.com/debian/ stable main' >> \ 14 echo 'deb https://dl.yarnpkg.com/debian/ stable main' >> \
15 /etc/apt/sources.list &&\ 15 /etc/apt/sources.list &&\