mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
Merge branch 'develop' of https://github.com/expanse-project/go-expanse into develop
Conflicts: docker/Dockerfile
This commit is contained in:
commit
41f1804126
3 changed files with 16 additions and 9 deletions
|
|
@ -13,13 +13,19 @@ RUN apt-get install -q -y unattended-upgrades
|
|||
|
||||
# Install Expanse
|
||||
RUN apt-get install -q -y curl git mercurial binutils bison gcc make libgmp3-dev build-essential
|
||||
RUN curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer | bash
|
||||
RUN source /root/.gvm/scripts/gvm
|
||||
RUN go install go1.4
|
||||
RUN gvm use go1.4 --default
|
||||
RUN git clone http://www.github.com/expanse-project/go-expanse.git && cd go-expanse
|
||||
RUN git checkout develop
|
||||
RUN make gexp
|
||||
|
||||
# Install Go
|
||||
RUN \
|
||||
mkdir -p /goroot && \
|
||||
curl https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | tar xvzf - -C /goroot --strip-components=1
|
||||
|
||||
# Set environment variables.
|
||||
ENV GOROOT /goroot
|
||||
ENV GOPATH /gopath
|
||||
ENV PATH $GOROOT/bin:$GOPATH/bin:$PATH
|
||||
|
||||
RUN git clone http://www.github.com/expanse-project/go-expanse.git
|
||||
RUN cd go-expanse && git checkout develop && make gexp
|
||||
|
||||
# Install supervisor
|
||||
RUN apt-get install -q -y supervisor
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ nodaemon=false
|
|||
|
||||
[program:gexp]
|
||||
priority=30
|
||||
directory=/
|
||||
command=gexp --rpc
|
||||
directory=~/go-expanse/
|
||||
command=build/bin/gexp --rpc
|
||||
user=root
|
||||
autostart=true
|
||||
autorestart=true
|
||||
|
|
|
|||
1
expanse-buildbot
Submodule
1
expanse-buildbot
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit bce4905f5b10f3940303033747bce866f3d46057
|
||||
Loading…
Reference in a new issue