Skip to content

Instantly share code, notes, and snippets.

@brunoborges
Last active June 22, 2019 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brunoborges/c368db99a5a2a1b7ffcd48158c8871fa to your computer and use it in GitHub Desktop.
Save brunoborges/c368db99a5a2a1b7ffcd48158c8871fa to your computer and use it in GitHub Desktop.
# No HTML files are extracted
FROM ubuntu:18.04
RUN apt -y update
RUN apt -y dist-upgrade
RUN apt -y install openjdk-11-doc
RUN find /usr/share/doc/openjdk-* -type f -name '*.html' | wc -l
# HTML files are extracted as expected
FROM debian:unstable
RUN apt -y update
RUN apt -y dist-upgrade
RUN apt -y install openjdk-11-doc
RUN find /usr/share/doc/openjdk-* -type f -name '*.html' | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment