quorum/Dockerfile

40 lines
1.5 KiB
Docker
Raw Normal View History

2015-02-26 15:52:01 -08:00
FROM ubuntu:14.04.2
2014-12-12 08:50:07 -08:00
## Environment setup
ENV HOME /root
ENV GOPATH /root/go
ENV PATH /root/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
2014-12-12 08:50:07 -08:00
RUN mkdir -p /root/go
ENV DEBIAN_FRONTEND noninteractive
## Install base dependencies
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y git mercurial build-essential software-properties-common wget pkg-config libgmp3-dev libreadline6-dev libpcre3-dev libpcre++-dev
2014-12-12 08:50:07 -08:00
2015-02-26 15:52:01 -08:00
## Install Qt5.4.1 (not required for CLI)
# RUN add-apt-repository ppa:beineri/opt-qt541-trusty -y
2015-02-16 03:12:14 -08:00
# RUN apt-get update -y
# RUN apt-get install -y qt54quickcontrols qt54webengine mesa-common-dev libglu1-mesa-dev
# ENV PKG_CONFIG_PATH /opt/qt54/lib/pkgconfig
2015-01-30 09:49:52 -08:00
# Install Golang
2015-02-26 15:52:01 -08:00
RUN wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go*.tar.gz && go version
2014-12-12 08:50:07 -08:00
# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
ADD https://api.github.com/repos/ethereum/go-ethereum/git/refs/heads/develop file_does_not_exist
2015-01-30 09:49:52 -08:00
## Fetch and install go-ethereum
2015-03-17 06:49:37 -07:00
RUN mkdir -p $GOPATH/src/github.com/ethereum/
RUN git clone https://github.com/ethereum/go-ethereum $GOPATH/src/github.com/ethereum/go-ethereum
2014-12-12 08:50:07 -08:00
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
2015-02-16 08:00:57 -08:00
RUN git checkout develop
2015-03-28 14:17:08 -07:00
RUN GOPATH=$GOPATH:$GOPATH/src/github.com/ethereum/go-ethereum/Godeps/_workspace go install -v ./cmd/geth
2014-12-12 08:50:07 -08:00
2015-01-30 09:49:52 -08:00
## Run & expose JSON RPC
2015-03-28 14:17:08 -07:00
ENTRYPOINT ["geth", "-rpc=true", "-rpcport=8545"]
2015-02-16 08:00:57 -08:00
EXPOSE 8545