docs/test/integration/mesos/Dockerfile-0.22.1

11 lines
289 B
Groff

FROM debian:7
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget -y
RUN wget http://downloads.mesosphere.io/master/debian/7/mesos_0.22.1-1.0.debian78_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon