From bbad38208e24d908181291f25ff54b744a0d84f2 Mon Sep 17 00:00:00 2001 From: "Carlos A. Gomes" Date: Thu, 19 Oct 2017 22:39:27 -0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed35091..b1de61b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ MAINTAINER Carlos A. Gomes # Add Node.js repo RUN \ - curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ + apt-get update \ + && apt-get install --no-install-recommends -y apt-transport-https \ + && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ && curl -sL https://deb.nodesource.com/setup_8.x | bash - \ && apt-get install --no-install-recommends -y \ @@ -15,7 +17,6 @@ RUN \ git \ yarn \ php7.1-zip \ - apt-transport-https \ # Slim down image