Skip to content

Instantly share code, notes, and snippets.

@Aakash-kaushik
Created September 8, 2021 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aakash-kaushik/883f64cf5e148e542982add87ceaed64 to your computer and use it in GitHub Desktop.
Save Aakash-kaushik/883f64cf5e148e542982add87ceaed64 to your computer and use it in GitHub Desktop.
Docker file for generating documentation for mlpack/models repo.
# 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