From 19de351f906523ed86b0221ebea33a8ac2bac9bc Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Mon, 3 Jul 2017 16:23:17 -0500 Subject: Fix ep:1610-1 build process The current process refers to two non-existing folders. When the build process tries to use those folders fails and the image is not created. Apparently the compilation order of ecomp-portal-FE-os depends on epsdk-app-os. Lastly, the installation of openjdk-8-jdk requires the --force-yes flag. Change-Id: If998393cd90a6f4a31806699423e90bfd0df8f30 Signed-off-by: Victor Morales --- deliveries/os_Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deliveries/os_Dockerfile') diff --git a/deliveries/os_Dockerfile b/deliveries/os_Dockerfile index efba0bdd..b322b547 100644 --- a/deliveries/os_Dockerfile +++ b/deliveries/os_Dockerfile @@ -14,7 +14,7 @@ RUN locale-gen $LANG RUN add-apt-repository ppa:openjdk-r/ppa # Install java8 -RUN apt-get update && apt-get install -y openjdk-8-jdk +RUN apt-get update && apt-get install -y --force-yes openjdk-8-jdk # Setup JAVA_HOME, this is useful for docker commandline ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/ @@ -68,7 +68,7 @@ COPY configure-and-run.sh /PROJECT/OpenSource/UbuntuEP/ #RUN cp -r ${FE_DIR}/dist/public ${SDKHOME}/public -COPY ${FE_DIR}/dist/public ${SDKHOME}/public +COPY ${FE_DIR}/dist/public ${SDKHOME} # Define default command. #CMD ["bash"] CMD ["/PROJECT/OpenSource/UbuntuEP/configure-and-run.sh"] -- cgit 1.2.3-korg