From 756893d8a3db92e385ba3309bcb1fb556751890f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 26 Jan 2019 15:01:38 +0100 Subject: [PATCH] Dockerfile: add a dockerfile that install docurium with its dependencies --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..d5e3cad0f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM debian:jessie-slim + +# We need these packages to build ruby extensions, rugged and to parse the C +# code. pygments is there to highlight the code examples. +RUN apt update +RUN apt install -y cmake pkg-config ruby ruby-dev llvm libclang-3.5-dev libssl-dev python-pygments + +RUN gem install docurium