mirror of
https://github.com/ldericher/autodoc.git
synced 2026-01-09 22:03:00 +00:00
14 lines
181 B
Docker
14 lines
181 B
Docker
FROM pandoc/extra:latest
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
bash \
|
|
inotify-tools \
|
|
make \
|
|
;
|
|
|
|
COPY src/usr /usr
|
|
|
|
ENTRYPOINT ["autodoc"]
|
|
CMD ["-bw"]
|