1
0
mirror of https://github.com/jordansissel/fpm synced 2024-12-21 00:24:13 +01:00
fpm/docs/Dockerfile
Jordan Sissel aecf23801d Add 'make view' in the docs/Makefile. Live-reloading sphinx html build.
Use sphinx-autobuild to run a server which autobuilds and reloads docs
in the browser.
2021-11-09 15:44:37 -08:00

12 lines
344 B
Docker

# This Dockerfile produces a docker image which is used to build the fpm docs.
FROM debian:latest
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip
RUN pip3 install Sphinx
#==1.8
RUN pip3 install sphinx_rtd_theme
RUN pip3 install alabaster
RUN pip3 install sphinx-autobuild
CMD ["/bin/bash"]