Created
September 8, 2021 13:05
-
-
Save Aakash-kaushik/883f64cf5e148e542982add87ceaed64 to your computer and use it in GitHub Desktop.
Docker file for generating documentation for mlpack/models repo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax=docker/dockerfile:1 | |
FROM ubuntu:21.04 | |
LABEL maintainer="kaushikaakash7539@gmail.com" | |
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections | |
RUN apt-get update | |
RUN apt-get install -y \ | |
python3 \ | |
python3-pip \ | |
doxygen \ | |
git \ | |
make | |
RUN apt-get clean && rm -rf /var/lib/apt/lists/* | |
RUN pip3 --no-cache-dir install --upgrade --ignore-installed \ | |
sphinx \ | |
m2r2 \ | |
breathe \ | |
exhale \ | |
git+https://github.com/bashtage/sphinx-material.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment