mirror of
https://github.com/jordansissel/fpm
synced 2025-08-24 03:14:30 +02:00
10 lines
302 B
Docker
10 lines
302 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 python-pip
|
|
RUN pip install Sphinx==1.8
|
|
RUN pip install sphinx_rtd_theme
|
|
RUN pip install alabaster
|
|
|
|
CMD ["/bin/bash"]
|