mirror of
https://github.com/jordansissel/fpm
synced 2024-12-21 00:24:13 +01:00
aecf23801d
Use sphinx-autobuild to run a server which autobuilds and reloads docs in the browser.
12 lines
344 B
Docker
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"]
|