autodoc/src/Dockerfile

13 lines
165 B
Docker

FROM pandoc/extra:latest
RUN set -ex; \
\
apk add --no-cache \
bash \
inotify-tools \
make \
;
COPY usr /usr
CMD ["autodoc", "-bw"]