about summary refs log tree commit diff homepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorjiseongg <jiseongg301@gmail.com>2020-10-09 14:47:34 +0900
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2020-10-12 10:46:19 +0100
commit51940e20c7b1a1651e247726a80c4ac643fd322b (patch)
tree0c804dd6950235ca4f52a23ff37ca4b699f43f0f /Dockerfile
parent88475f63661dafa7a13d3e2c7ea2679dc9cd3c8a (diff)
downloadklee-51940e20c7b1a1651e247726a80c4ac643fd322b.tar.gz
Add doxygen support in docker image
CMake Warning at docs/CMakeLists.txt:46 (message):
  Doxygen not found.  Can't build Doxygen documentation
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index eed582ce..6a0eefb9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,6 +16,7 @@ ENV COVERAGE=0
 ENV USE_TCMALLOC=1
 ENV BASE=/tmp
 ENV LLVM_VERSION=9.0
+ENV ENABLE_DOXYGEN=1
 ENV ENABLE_OPTIMIZED=1
 ENV ENABLE_DEBUG=1
 ENV DISABLE_ASSERTIONS=0
@@ -36,7 +37,7 @@ LABEL maintainer="KLEE Developers"
 # TODO remove adding sudo package
 # Create ``klee`` user for container with password ``klee``.
 # and give it password-less sudo access (temporarily so we can use the TravisCI scripts)
-RUN apt update && DEBIAN_FRONTEND=noninteractive apt -y --no-install-recommends install sudo emacs-nox vim-nox file python3-dateutil && \
+RUN apt update && DEBIAN_FRONTEND=noninteractive apt -y --no-install-recommends install sudo emacs-nox vim-nox file python3-dateutil doxygen && \
     rm -rf /var/lib/apt/lists/* && \
     useradd -m klee && \
     echo klee:klee | chpasswd && \