autodoc/build/Dockerfile

11 lines
220 B
Docker
Raw Normal View History

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/*
2019-09-24 09:53:22 +00:00
COPY autodoc /usr/local/bin/autodoc
2019-09-19 16:11:47 +00:00
RUN chmod +x /usr/local/bin/autodoc
2019-09-20 10:30:21 +00:00
CMD ["autodoc"]