73 lines
2.2 KiB
Docker
73 lines
2.2 KiB
Docker
FROM ubuntu:14.04
|
|
|
|
#############
|
|
## SETUP ##
|
|
#############
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -yq \
|
|
git pkg-config wget make cmake3 autoconf libtool zlib1g-dev gawk g++ curl subversion lsb-release libpcre3-dev \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# Swig install
|
|
RUN wget "https://downloads.sourceforge.net/project/swig/swig/swig-3.0.12/swig-3.0.12.tar.gz" \
|
|
&& tar xvf swig-3.0.12.tar.gz && rm swig-3.0.12.tar.gz \
|
|
&& cd swig-3.0.12 && ./configure --prefix=/usr && make -j 4 && make install \
|
|
&& cd .. && rm -rf swig-3.0.12
|
|
|
|
# Python Install
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -yq \
|
|
python-dev python-pip python-wheel python-six \
|
|
python3-dev python3-pip python3-wheel python3-six \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# Java install
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -yq openjdk-7-jdk \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# Dotnet Install
|
|
# note: package "apt-transport-https" is needed by deb command see below
|
|
RUN apt-get update -qq \
|
|
&& apt-get install -yq apt-transport-https \
|
|
&& wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb \
|
|
&& dpkg -i packages-microsoft-prod.deb \
|
|
&& apt-get update \
|
|
&& apt-get install -yq dotnet-sdk-2.1 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
ENV TZ=America/Los_Angeles
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
# Copy the snk key
|
|
COPY or-tools.snk /root/or-tools.snk
|
|
ENV DOTNET_SNK=/root/or-tools.snk
|
|
|
|
################
|
|
## OR-TOOLS ##
|
|
################
|
|
ARG SRC_GIT_BRANCH
|
|
ENV SRC_GIT_BRANCH ${SRC_GIT_BRANCH:-master}
|
|
ARG SRC_GIT_SHA1
|
|
ENV SRC_GIT_SHA1 ${SRC_GIT_SHA1:-unknown}
|
|
|
|
# Download sources
|
|
# use SRC_GIT_SHA1 to modify the command
|
|
# i.e. avoid docker reusing the cache when new commit is pushed
|
|
WORKDIR /root
|
|
RUN git clone -b "${SRC_GIT_BRANCH}" --single-branch https://github.com/google/or-tools \
|
|
&& echo "sha1: $(cd or-tools && git rev-parse --verify HEAD)" \
|
|
&& echo "expected sha1: ${SRC_GIT_SHA1}"
|
|
|
|
# Prebuild
|
|
WORKDIR /root/or-tools
|
|
RUN make detect && make third_party
|
|
RUN make detect_cc && make cc
|
|
RUN make detect_python && make python
|
|
RUN make detect_java && make java
|
|
RUN make detect_dotnet && make dotnet
|