I am trying to create a simple docker image.
FROM ubuntu
RUN apt-get clean
RUN apt-get update
RUN apt-get -y install wget
RUN apt-get -y install default-jre
During default-jre install, it always fails with below error.
I also did rm -rf /var/lib/apt/lists/*
- does not help.
How can i fix this?