dockcross/Dockerfile
Matt McCormick 2923564677 base: Build ninja from source.
There were some issues with ninja/cpack. Bump to the latest version, 1.5.3,
resolves them.
2015-05-11 11:24:19 -04:00

48 lines
951 B
Docker

FROM debian:jessie
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
RUN apt-get update && apt-get -y install \
automake \
autogen \
bash \
build-essential \
bzip2 \
curl \
file \
git \
gzip \
libssl-dev \
make \
ncurses-dev \
pkg-config \
python \
rsync \
sed \
tar \
vim \
wget \
xz-utils
# Build and install CMake from source.
WORKDIR /usr/src
# nighty-master 2015-05-04
RUN git clone git://cmake.org/cmake.git CMake && \
cd CMake && \
git checkout 6cd6d50871ce28d0c72336a6aca01814487df5e1
RUN mkdir CMake-build
WORKDIR /usr/src/CMake-build
RUN /usr/src/CMake/bootstrap \
--parallel=$(nproc) \
--prefix=/usr && \
make -j$(nproc) install && \
rm -rf *
WORKDIR /usr/src
# Build and install Ninja from source
RUN git clone https://github.com/martine/ninja.git && \
cd ninja && \
git checkout v1.5.3 && \
python ./configure.py --bootstrap && \
./ninja && \
cp ./ninja /usr/bin/