aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/test
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-18 16:33:58 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-03-18 16:33:58 -0700
commit8090150911d508d3b861f25d124b7b48462ad8d2 (patch)
tree124cd196ae54a5ab24387f3c3874d7a796f78a05 /templates/tools/dockerfile/test
parent55977aa487fedda9dbdccf36d7a6a7c83377b018 (diff)
parentf09f020a491f921fd4e3b1595e858a3f3aab11af (diff)
Merge pull request #5783 from dgquintas/nanopb-dockerfile
Moved apt-gets from .sh file to dockerfile for nanopb
Diffstat (limited to 'templates/tools/dockerfile/test')
-rw-r--r--templates/tools/dockerfile/test/sanity/Dockerfile.template8
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/tools/dockerfile/test/sanity/Dockerfile.template b/templates/tools/dockerfile/test/sanity/Dockerfile.template
index ad1d92e7cb..8265c09afc 100644
--- a/templates/tools/dockerfile/test/sanity/Dockerfile.template
+++ b/templates/tools/dockerfile/test/sanity/Dockerfile.template
@@ -34,7 +34,13 @@
<%include file="../../apt_get_basic.include"/>
#========================
# Sanity test dependencies
- RUN apt-get update && apt-get install -y python-pip
+ RUN apt-get update && apt-get install -y ${"\\"}
+ python-pip ${"\\"}
+ autoconf ${"\\"}
+ automake ${"\\"}
+ libtool ${"\\"}
+ curl ${"\\"}
+ python-virtualenv
RUN pip install simplejson mako
#===================