Created
January 9, 2019 10:00
-
-
Save jaceju/e542a733b418b305c18458124a59fa61 to your computer and use it in GitHub Desktop.
Ubuntu Install Java 8
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
# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199#23 | |
RUN mkdir -p /usr/share/man/man1 && \ | |
apt-get update && \ | |
apt-get install -y --no-install-recommends \ | |
openjdk-8-jdk && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /root/.cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment