autodoc/src/Dockerfile

11 lines
187 B
Docker
Raw Normal View History

2019-09-19 16:11:47 +00:00
FROM ldericher/pandocker:latest
2021-09-22 21:45:45 +00:00
RUN set -ex; \
apt-get update && apt-get -y install \
2019-09-19 16:11:47 +00:00
inotify-tools \
2021-09-22 21:45:45 +00:00
; rm -rf /var/lib/apt/lists/*;
2019-09-19 16:11:47 +00:00
2019-09-24 11:16:36 +00:00
COPY usr /usr
2019-09-20 10:30:21 +00:00
2020-02-18 09:42:11 +00:00
CMD ["autodoc", "-bw"]