Files
cmake-examples/dockerfiles/ubuntu14.04-cmake-3.4.3
2017-07-22 20:32:24 +01:00

52 lines
1.2 KiB
Groff

# Container for building and testing cmake-examples with cmake v3.4.3
FROM ubuntu:14.04
MAINTAINER Thom Troy
RUN apt-get update && apt-get install -y build-essential \
sudo \
libboost-all-dev \
libprotobuf-dev \
protobuf-compiler \
clang-3.6 \
clang-format-3.6 \
ninja-build \
wget \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& apt-get autoremove -y
RUN cd /usr/local/src \
&& wget https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 \
&& mv gosu-amd64 /usr/local/bin/gosu \
&& chmod +x /usr/local/bin/gosu
ADD setup.sh /setup.sh
RUN chmod +x /setup.sh
RUN cd /usr/local/src \
&& wget https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz \
&& tar xvf cmake-3.4.3.tar.gz \
&& cd cmake-3.4.3 \
&& ./bootstrap \
&& make \
&& make install \
&& cd .. \
&& rm -rf cmake*
# cppcheck
RUN cd /usr/local/src \
&& wget https://github.com/danmar/cppcheck/archive/1.79.tar.gz \
&& tar xvf 1.79.tar.gz \
&& cd cppcheck-1.79 \
&& mkdir build \
&& cd build \
&& cmake .. \
&& make install \
&& cd ../.. && rm -rf cppcheck*
CMD ["/bin/bash"]
ENTRYPOINT ["/setup.sh"]