# HG changeset patch # User Tom Gottfried # Date 1544711658 -3600 # Node ID 2241f8710dccc97bd200cb260dd29265c501fcfb # Parent ca9bd1ce26e537ad9296982e8aa324de3bc09f43 Fix client Dockerfile ca-certificates is needed to fetch the yarn key via https, but was not explicitly installed. Running as root does not require sudo and it is not explicitly installed. diff -r ca9bd1ce26e5 -r 2241f8710dcc docker/Dockerfile.spa --- a/docker/Dockerfile.spa Thu Dec 13 14:57:39 2018 +0100 +++ b/docker/Dockerfile.spa Thu Dec 13 15:34:18 2018 +0100 @@ -6,10 +6,11 @@ RUN sed -i 's/\(deb.*\)$/\1 universe/' /etc/apt/sources.list RUN apt-get update &&\ - apt-get -y install --no-install-recommends curl gnupg nodejs make mercurial + apt-get -y install --no-install-recommends \ + curl ca-certificates gnupg nodejs make mercurial # Install yarn -RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - &&\ +RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\ echo 'deb https://dl.yarnpkg.com/debian/ stable main' >> \ /etc/apt/sources.list &&\ apt-get update &&\