commit 9b54c11ed2c18156aa314c663751fd60c9f3f34b Author: Drew Short Date: Tue Dec 10 18:48:10 2019 -0600 Adding dockerfile to build image diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ee74e74 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Dockerfile to build a pdf2htmlEx image +FROM debian:stretch + +ENV REFRESHED_AT 20191210 + +# update debian source list +RUN apt-get -qqy update && \ + apt-get -qqy install pdf2htmlex && \ + rm -rf /var/lib/apt/lists/* + +VOLUME /pdf +WORKDIR /pdf + +CMD ["pdf2htmlEX"]