Last active
August 21, 2020 06:45
-
-
Save vnnvanhuong/92b3c5978a9e30c60f505cec707292e1 to your computer and use it in GitHub Desktop.
maven-oracle-jdk-dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Install Oracle Java 8 | |
FROM ubuntu:16.04 | |
MAINTAINER Huong Nguyen vnnvanhuong@gmail.com | |
# Update the package repository | |
RUN echo "deb http://archive.ubuntu.com/ubuntu xenial main universe" > /etc/apt/sources.list | |
RUN apt-get -y update | |
# Install python-software-properties | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q python-software-properties software-properties-common | |
# Install Oracle Java 8 | |
ENV JAVA_VER 8 | |
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle | |
RUN echo 'deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main' >> /etc/apt/sources.list && \ | |
echo 'deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main' >> /etc/apt/sources.list && \ | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C2518248EEA14886 && \ | |
apt-get update && \ | |
echo oracle-java${JAVA_VER}-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \ | |
apt-get install -y --force-yes --no-install-recommends oracle-java${JAVA_VER}-installer oracle-java${JAVA_VER}-set-default && \ | |
apt-get clean && \ | |
rm -rf /var/cache/oracle-jdk${JAVA_VER}-installer | |
# Set Oracle Java as the default Java | |
RUN update-java-alternatives -s java-8-oracle | |
RUN echo "export JAVA_HOME=/usr/lib/jvm/java-8-oracle" >> ~/.bashrc | |
# Clean Up APT when finished | |
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
## Install Maven 3.3.9 | |
ENV MAVEN_VERSION 3.3.9 | |
RUN apt-get update && apt-get install curl | |
RUN mkdir -p /usr/share/maven \ | |
&& curl -fsSL http://apache.osuosl.org/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz \ | |
| tar -xzC /usr/share/maven --strip-components=1 \ | |
&& ln -s /usr/share/maven/bin/mvn /usr/bin/mvn | |
ENV MAVEN_HOME /usr/share/maven | |
VOLUME /root/.m2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment