Signed-off-by: Jess Frazelle <jess@mesosphere.com>
This commit is contained in:
Jess Frazelle 2016-03-31 11:11:59 -07:00
parent 3863eaac43
commit 516f197cdb
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -5,8 +5,12 @@ RUN apt-get update && apt-get install -y \
automake \
ca-certificates \
ccache \
clang \
clang-3.8 \
clang-format-3.8 \
clang-tidy-3.8 \
colorgcc \
curl \
g++ \
iptables \
libapr1-dev \
libcurl4-openssl-dev \
@ -33,6 +37,8 @@ ADD https://get.docker.com/builds/Linux/x86_64/docker-latest /usr/bin/docker
RUN chmod +x /usr/bin/docker \
&& echo "docker daemon -D -s overlay" > $HOME/.bash_history
ENV CCACHE_MAXSIZE=20G CCACHE_CPP2=true CCACHE_HARDLINK=true CCACHE_SLOPPINESS=file_macro,time_macros,include_file_mtime,include_file_ctime,file_stat_matches CC=/usr/bin/clang CXX=/usr/bin/clang++
WORKDIR /usr/src/mesos
ENTRYPOINT [ "bash" ]