Skip to content

Instantly share code, notes, and snippets.

@jaceju
Created January 9, 2019 10:00
Show Gist options
  • Save jaceju/e542a733b418b305c18458124a59fa61 to your computer and use it in GitHub Desktop.
Save jaceju/e542a733b418b305c18458124a59fa61 to your computer and use it in GitHub Desktop.
Ubuntu Install Java 8
# 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