Skip to content
Snippets Groups Projects
Commit b8457184 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

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

parent 91bd67cb
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,13 @@ ...@@ -34,7 +34,13 @@
<%include file="../../apt_get_basic.include"/> <%include file="../../apt_get_basic.include"/>
#======================== #========================
# Sanity test dependencies # 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 RUN pip install simplejson mako
#=================== #===================
......
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
set -ex set -ex
apt-get install -y autoconf automake libtool curl python-virtualenv
readonly NANOPB_TMP_OUTPUT="$(mktemp -d)" readonly NANOPB_TMP_OUTPUT="$(mktemp -d)"
# install protoc version 3 # install protoc version 3
......
...@@ -65,7 +65,7 @@ RUN apt-get update && apt-get install -y time && apt-get clean ...@@ -65,7 +65,7 @@ RUN apt-get update && apt-get install -y time && apt-get clean
#======================== #========================
# Sanity test dependencies # 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 RUN pip install simplejson mako
#=================== #===================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment