Skip to content
Snippets Groups Projects
Select Git revision
  • 96ae86cb8c17ea456073810f461240e78942b31f
  • master default protected
  • cmp_tool-improvement
  • v0.15
  • v0.14
  • v0.13
  • v0.12
  • v0.11
  • v0.09
  • v0.08
  • v0.07
  • v0.06
  • v0.05
13 results

fuzz.h

Blame
  • Dockerfile 385 B
    FROM python:3.7-slim-bullseye
    # install everything
    RUN apt-get update -y \
     && apt-get install -y -qq texlive texlive-latex-extra pandoc build-essential \
     && apt-get clean all
    ADD requirements.txt /requirements.txt
    RUN pip install --no-cache -r requirements.txt
    # build the documentation with sphinx?
    #ADD ./Source /doc/Source
    #ADD ./Makefile /doc/Makefile
    WORKDIR /doc
    #RUN make html