Browse Source

Adding dockerfile to build image

master
Drew Short 4 years ago
commit
9b54c11ed2
  1. 14
      Dockerfile

14
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"]
Loading…
Cancel
Save