updrading tests to use mesos 0.25

Signed-off-by: Isabel Jimenez <contact@isabeljimenez.com>
This commit is contained in:
Isabel Jimenez
2015-12-16 14:19:19 -05:00
parent b2739245ce
commit 542af05391
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
FROM debian:8
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget python -y
RUN wget http://downloads.mesosphere.io/master/debian/8/mesos_0.25.0-0.2.70.debian81_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon

View File

@@ -5,7 +5,7 @@ load ../../helpers
export SWARM_MESOS_TASK_TIMEOUT=30s
export SWARM_MESOS_USER=daemon
MESOS_IMAGE=dockerswarm/mesos:0.24.1
MESOS_IMAGE=dockerswarm/mesos:0.25
MESOS_MASTER_PORT=$(( ( RANDOM % 1000 ) + 10000 ))
# Start mesos master and slave.