From db488b9e48e432ad593fc8244512e0e2b79a48c6 Mon Sep 17 00:00:00 2001 From: cyuamber Date: Tue, 15 Sep 2020 18:28:40 +0800 Subject: fix: fix bugs of java 11 installation Change-Id: I4746cd066d4b2f43f844ff3b0f17129d6c45d224 Issue-ID: USECASEUI-484 Signed-off-by: cyuamber --- distribution/src/main/assembly/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/src/main/assembly/Dockerfile b/distribution/src/main/assembly/Dockerfile index a173baed..20f6b911 100644 --- a/distribution/src/main/assembly/Dockerfile +++ b/distribution/src/main/assembly/Dockerfile @@ -2,7 +2,8 @@ FROM ubuntu:16.04 EXPOSE 8443 -RUN apt-get install -y python-software-properties && \ +RUN apt-get update && \ + apt-get install -y python-software-properties && \ apt-get install -y software-properties-common && \ add-apt-repository -y ppa:openjdk-r/ppa && \ apt-get update && \ -- cgit 1.2.3-korg