From c6a8500c44dcfcda4c6875b2ee41928541e83cd3 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sun, 10 Dec 2017 17:41:35 +0800 Subject: [PATCH] fix install hhvm package cannot be authenticated --- hhvm/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hhvm/Dockerfile b/hhvm/Dockerfile index b4404a66..92b8905f 100644 --- a/hhvm/Dockerfile +++ b/hhvm/Dockerfile @@ -5,7 +5,8 @@ MAINTAINER Mahmoud Zalt RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449 RUN apt-get update -y \ - && apt-get install -y software-properties-common \ + && apt-get install -y software-properties-common wget \ + && wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add - \ && add-apt-repository "deb http://dl.hhvm.com/ubuntu $(lsb_release -sc) main" \ && apt-get update -y \ && apt-get install -y hhvm \