aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-03-16 16:46:59 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-03-16 16:46:59 -0700
commitb84571840a590c7b543bb0514a389c9c80740bb6 (patch)
treef18cbc4f4d8bb7fa01ed9f64c279e71eaa9d2e1d /templates
parent91bd67cb337d8794f41b481c773203e72492272b (diff)
moved apt-gets from .sh file to dockerfile for nanopb
Diffstat (limited to 'templates')
-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..9706380709 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
#===================