Skip to content

Instantly share code, notes, and snippets.

@onlyangel
Created April 5, 2014 21:23
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 onlyangel/9998262 to your computer and use it in GitHub Desktop.
Save onlyangel/9998262 to your computer and use it in GitHub Desktop.
# AppScale
#
# VERSION 0.0.1
# Based on the file of Chris Bunch <chris@appscale.com> @ http://www.appscale.com/blog/2013/10/30/appscale-on-docker/
FROM ubuntu
MAINTAINER Jose Angel Espinoza Portillo <jose@ngel.es
# First, update the apt-get
RUN apt-get update
# First, install git
RUN apt-get install -y git-core
# Next, grab the main and tools branches from git
# Use my docker branch until it gets merged into master.
RUN git clone git://github.com/shatterednirvana/appscale -b docker /root/appscale
RUN git clone git://github.com/AppScale/appscale-tools -b 1.12.0 /root/appscale-tools
# Install main
RUN bash /root/appscale/debian/appscale_build.sh
# Install the tools
RUN bash /root/appscale-tools/debian/appscale_build.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment