This repository has been archived by the owner on Dec 5, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from mesosphere/multibuilder
build support for multiple variants of mesos, until pure bindings have merged w/ master
- Loading branch information
Showing
7 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
README.md | ||
build | ||
Dockerfile.orig | ||
mesos-*-compat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,9 @@ FROM debian:wheezy | |
MAINTAINER James DeFelice <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV DEB_VERSION_MESOS 0.20.1-1.0.debian75 | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF && \ | ||
echo "deb http://repos.mesosphere.io/debian wheezy main" | \ | ||
tee /etc/apt/sources.list.d/mesosphere.list && \ | ||
apt-get -y update && \ | ||
apt-get -y install mesos=$DEB_VERSION_MESOS g++ make curl mercurial git | ||
RUN apt-get -y update && \ | ||
apt-get -y install g++ make curl mercurial git | ||
|
||
RUN curl -L https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz | tar xz && cd protobuf-2.5.0/ && ./configure --prefix=/usr && make && make install | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
docker build -t k8s-mesos-builder . | ||
docker build -t kubernetes-mesos:build-base . | ||
docker tag kubernetes-mesos:build-base jdef/kubernetes-mesos:build-base | ||
|
||
for i in mesos-0.20.1-compat mesos-0.21.0-compat; do | ||
test -d $i && docker build -t kubernetes-mesos:build-$i $i && docker tag kubernetes-mesos:build-$i kubernetes-mesos:build-latest | ||
docker tag kubernetes-mesos:build-$i jdef/kubernetes-mesos:build-$i | ||
docker tag kubernetes-mesos:build-$i jdef/kubernetes-mesos:build-latest | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM jdef/kubernetes-mesos:build-base | ||
MAINTAINER James DeFelice <[email protected]> | ||
|
||
ENV DEB_VERSION_MESOS 0.20.1-1.0.debian75 | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF && \ | ||
echo "deb http://repos.mesosphere.io/debian wheezy main" | \ | ||
tee /etc/apt/sources.list.d/mesosphere.list && \ | ||
apt-get -y update && \ | ||
apt-get -y install mesos=$DEB_VERSION_MESOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM jdef/kubernetes-mesos:build-base | ||
MAINTAINER James DeFelice <[email protected]> | ||
|
||
ENV DEB_VERSION_MESOS 0.21.0-1.0.debian77 | ||
|
||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF && \ | ||
echo "deb http://repos.mesosphere.io/debian wheezy main" | \ | ||
tee /etc/apt/sources.list.d/mesosphere.list && \ | ||
apt-get -y update && \ | ||
apt-get -y install mesos=$DEB_VERSION_MESOS |