2019-09-19 16:11:47 +00:00
|
|
|
FROM ldericher/pandocker:latest
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get -y install \
|
|
|
|
|
inotify-tools \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
COPY autodoc.sh /usr/local/bin/autodoc
|
|
|
|
|
RUN chmod +x /usr/local/bin/autodoc
|
2019-09-20 10:30:21 +00:00
|
|
|
|
|
|
|
|
CMD ["autodoc"]
|