My apologies, this is the latest one that I use:
FROM python:3.6.9-slim-stretch
# re: mkdir, 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 \
openjdk-8-jre-headless \
&& rm -rf /var/lib/apt/lists/* && \
pip3 --no-cache-dir install hail==0.2.37 ipython
ENTRYPOINT ["ipython"]
CMD []
I keep a repository of this docker file on GitHub: https://github.com/danking/docker-hail.
There are plans currently under way to regularly publish a Hail docker image versioned by the Hail PyPI version. We have a minor technical hurdle to address in our continuous deployment system.