moved apt-gets from .sh file to dockerfile for nanopb

pull/5783/head
David Garcia Quintas 9 years ago
parent 91bd67cb33
commit b84571840a
  1. 8
      templates/tools/dockerfile/test/sanity/Dockerfile.template
  2. 2
      tools/distrib/check_nanopb_output.sh
  3. 2
      tools/dockerfile/test/sanity/Dockerfile

@ -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
#===================

@ -30,8 +30,6 @@
set -ex
apt-get install -y autoconf automake libtool curl python-virtualenv
readonly NANOPB_TMP_OUTPUT="$(mktemp -d)"
# install protoc version 3

@ -65,7 +65,7 @@ RUN apt-get update && apt-get install -y time && apt-get clean
#========================
# 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
#===================

Loading…
Cancel
Save