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
14 lines
265 B
# 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"]
|