From 89158b7398280cd9e707df79a744f06a898a4fd0 Mon Sep 17 00:00:00 2001 From: stebifan Date: Sun, 1 Apr 2018 17:13:05 +0200 Subject: [PATCH] Curl Install --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 961e537..53a677e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM ubuntu:16.04 +#Install curl +RUN apt-get update && apt-get install -y curl + + # Install yarn RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list