mirror of
https://github.com/ldericher/autodoc.git
synced 2025-12-06 15:43:01 +00:00
13 lines
165 B
Docker
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"]
|