mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
24 lines
509 B
Groff
24 lines
509 B
Groff
# Container for building and testing cmake-examples with default cmake v2.8.12.2
|
|
FROM ubuntu:16.04
|
|
MAINTAINER Thom Troy
|
|
|
|
RUN apt-get update && apt-get install -y build-essential \
|
|
sudo \
|
|
cmake \
|
|
libboost-all-dev \
|
|
libprotobuf-dev \
|
|
protobuf-compiler \
|
|
cppcheck \
|
|
clang-3.6 \
|
|
ninja-build \
|
|
wget \
|
|
git \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
ADD setup.sh /setup.sh
|
|
RUN chmod +x /setup.sh
|
|
|
|
CMD ["/bin/bash"]
|
|
ENTRYPOINT ["/setup.sh"]
|