Factotum 0.5.0 libssl.so.1.0.0 error

I am trying to use the docker image snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 to run factotum, as it has the java jre

I have this docker command inside my dockerfile which installs factotum:

RUN wget https://bintray.com/artifact/download/snowplow/snowplow-generic/factotum_0.5.0_linux_x86_64.zip -O /tmp/factotum.zip && \
unzip /tmp/factotum.zip -d /usr/local/bin/ && \
rm /tmp/factotum.zip

However when i try to run this i encounter this error.

factotum: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

It seems libssl.so.1.0.0 is old and there are more recent versions of libssl.so.1.0.2 and libssl.so.1.1.

Is there a work around for this problem? What do other people use to run factotum? (and which also have the java jre)

I got it working with a ubuntu:18.04 base image.