You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
265 B

  1. # Dockerfile to build a pdf2htmlEx image
  2. FROM debian:stretch
  3. ENV REFRESHED_AT 20191210
  4. # update debian source list
  5. RUN apt-get -qqy update && \
  6. apt-get -qqy install pdf2htmlex && \
  7. rm -rf /var/lib/apt/lists/*
  8. VOLUME /pdf
  9. WORKDIR /pdf
  10. CMD ["pdf2htmlEX"]