update docker

This commit is contained in:
Christopher Franko 2015-09-03 12:42:15 -04:00
parent cbf7147409
commit 43b929d242
3 changed files with 9 additions and 7 deletions

1
.gitignore vendored
View file

@ -36,3 +36,4 @@ profile.tmp
profile.cov profile.cov
.idea/workspace.xml .idea/workspace.xml
*.idea/

View file

@ -16,7 +16,7 @@ master | [![Build+Status](https://build.ethdev.com/buildstatusimage?builder=L
The following builds are build automatically by our build servers after each push to the [develop](https://github.com/expanse-project/go-expanse/tree/develop) branch. The following builds are build automatically by our build servers after each push to the [develop](https://github.com/expanse-project/go-expanse/tree/develop) branch.
* [Docker](https://registry.hub.docker.com/u/expanse/client-go/) * [Docker](https://registry.hub.docker.com/u/expanse/go-expanse/)
* [OS X](http://build.ethdev.com/builds/OSX%20Go%20develop%20branch/Mist-OSX-latest.dmg) * [OS X](http://build.ethdev.com/builds/OSX%20Go%20develop%20branch/Mist-OSX-latest.dmg)
* Ubuntu * Ubuntu
[trusty](https://build.ethdev.com/builds/Linux%20Go%20develop%20deb%20i386-trusty/latest/) | [trusty](https://build.ethdev.com/builds/Linux%20Go%20develop%20deb%20i386-trusty/latest/) |

View file

@ -1,5 +1,5 @@
FROM ubuntu:utopic FROM ubuntu:utopic
MAINTAINER caktux MAINTAINER chrisfranko
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
@ -12,11 +12,12 @@ RUN apt-get dist-upgrade -q -y
RUN apt-get install -q -y unattended-upgrades RUN apt-get install -q -y unattended-upgrades
# Install Expanse # Install Expanse
RUN apt-get install -q -y software-properties-common RUN apt-get install git binutils bison gcc make libgmp3-dev
RUN add-apt-repository ppa:expanse/expanse RUN bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
RUN add-apt-repository ppa:expanse/expanse-dev RUN go install go1.4
RUN apt-get update RUN gvm use go1.4 --default
RUN apt-get install -q -y gexp RUN git clone http://www.github.com/expanse-project/go-expanse.git && cd go-expanse
RUN make gexp
# Install supervisor # Install supervisor
RUN apt-get install -q -y supervisor RUN apt-get install -q -y supervisor