Official Oracle Java Dockerfile

Hi,

Can anyone send me the official Oracle Java Dockerfile to me. I found it is difficult to download and install since the connection drops in the middle when the following part of the docker file is being implemented.

RUN cd /tmp &&
wget Unauthorized Request &&
tar xzvf jdk-8u111-linux-x64.tar.gz &&
rm -f jdk-8u111-linux-x64.tar.gz &&
mv -r jdk1.8.0_111/ /usr/local &&
echo ‘export JAVA_HOME=/usr/local/jdk1.8.0_111/’ >> ~/.bashrc &&
echo ‘export JRE_HOME=/usr/local/jdk1.8.0_111/jre’ >> ~/.bashrc &&
echo ‘export PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin’ >> ~/.bashrc &&
source ~/.bashrc

https://hub.docker.com/_/openjdk/