From aefb32b2e8a0afdd3438d1a2c2fd04aa2a7b2a91 Mon Sep 17 00:00:00 2001 From: Marian Pritsak Date: Mon, 19 Dec 2016 19:39:31 +0200 Subject: [PATCH] [sonic-slave]: Install j2cli for templating (#139) --- sonic-slave/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sonic-slave/Dockerfile b/sonic-slave/Dockerfile index 50e96bfcd1d9..7b03e4ee8162 100644 --- a/sonic-slave/Dockerfile +++ b/sonic-slave/Dockerfile @@ -82,6 +82,9 @@ RUN apt-get update && apt-get install -y libmysqlclient-dev libmysqld-dev libper # For mpdecimal RUN apt-get update && apt-get install -y docutils-common libjs-sphinxdoc libjs-underscore python-docutils python-jinja2 python-markupsafe python-pygments python-roman python-sphinx sphinx-common python3-sphinx +# For templating +RUN pip install j2cli + # Install depot-tools (for git-retry) RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /usr/share/depot_tools ENV PATH /usr/share/depot_tools:$PATH