mirror of
https://github.com/ldericher/autodoc.git
synced 2025-12-06 15:43:01 +00:00
11 lines
236 B
Docker
11 lines
236 B
Docker
FROM ldericher/pandocker:latest
|
|
|
|
RUN apt-get update && apt-get -y install \
|
|
inotify-tools \
|
|
lsof \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY autodoc.sh /usr/local/bin/autodoc
|
|
RUN chmod +x /usr/local/bin/autodoc
|
|
|
|
CMD ["autodoc"]
|