Skip to content

Instantly share code, notes, and snippets.

@xarses
Created February 19, 2015 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xarses/84d3e9796af0f7cbb7f0 to your computer and use it in GitHub Desktop.
Save xarses/84d3e9796af0f7cbb7f0 to your computer and use it in GitHub Desktop.
fuel-main docker file
# fuel-iso-builder
#
# iso building container for fuel
#
# Version 0.1
FROM ubuntu:14.04
MAINTAINER Andrew Woodward awoodward@mirantis.com
WORKDIR /root
ENV DEBIAN_FRONTEND noninteractive
# We want to run on our docker images on our Parent
VOLUME /var/run/docker.sock:/var/run/docker.sock
RUN apt-get update && \
apt-get install -y git
RUN git clone http://github.com/stackforge/fuel-main
WORKDIR /root/fuel-main
RUN ./prepare-build-env.sh
@xarses
Copy link
Author

xarses commented Feb 19, 2015

docker run --privileged -v /var/run/docker.sock:/var/run/docker.sock -ti fuel-iso-builder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment