Skip to content

Commit

Permalink
docker: download astyle 3.0.1
Browse files Browse the repository at this point in the history
Sometimes the style changes differ between astyle versions 2 and 3,
therefore let's stick to 3.
  • Loading branch information
julianoes committed Nov 30, 2017
1 parent 0d87dbe commit d4f7ef9
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,30 @@ MAINTAINER Julian Oes <julian@oes.ch>
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update \
&& apt-get -y --quiet --no-install-recommends install \
cmake \
build-essential \
colordiff \
astyle \
git \
libcurl4-openssl-dev \
doxygen \
&& apt-get -y --quiet --no-install-recommends install \
cmake \
build-essential \
colordiff \
git \
libcurl4-openssl-dev \
doxygen \
autoconf \
libtool \
wget \
ca-certificates \
autoconf \
automake \
python \
python-pip \
libtinyxml2-dev \
&& apt-get -y autoremove \
&& apt-get clean autoclean \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
&& apt-get -y autoremove \
&& apt-get clean autoclean \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*

# We need the latest astyle version
RUN wget http://archive.ubuntu.com/ubuntu/pool/universe/a/astyle/astyle_3.0.1-1ubuntu1_amd64.deb \
&& dpkg -i astyle_3.0.1-1ubuntu1_amd64.deb \
&& rm astyle_3.0.1-1ubuntu1_amd64.deb

RUN pip install grpcio grpcio-tools

Expand Down

0 comments on commit d4f7ef9

Please sign in to comment.