aboutsummaryrefslogtreecommitdiff
path: root/util/docker/doc.coreboot.org/Dockerfile
blob: 72b699fbddf46f3c9c23c8b8dc6579d02343203e (plain)
1
2
3
4
5
FROM debian:stable
RUN apt-get update && apt-get install -y make python-sphinx python-recommonmark python-sphinx-rtd-theme git && apt-get clean
USER nobody
VOLUME /data-in /data-out
ENTRYPOINT bash -c "cd /data-in/Documentation && make sphinx BUILDDIR=/tmp/build && rm -rf /data-out/* && mv /tmp/build/html/* /data-out/"