mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
ebd77aabe2
* static: updates Whisper test (to work with Geth 1.6.1) * jail: VM persistence implemented * jail: sendMessage/showSuggestions minor fixes (to be squashed) * node: CHT and boot nodes auto-load implemented * Replaced CHT data file from farazdagi's to tiabc's * Rewrote config_test.go using testify having reduced it twice in size * Increased SyncTime and panic timeout in tests * Fixed test - remove go default test to testify/suite (#207) * Add flag setup for RPCEnabled and add comment (#225) * jail: register method handlers before running initial js in jail (#226) * Console Jail Mod #179 (#228) * Added ./statusd-data into .gitignore * Increased log level for the test node from INFO to ERROR * Add call to loop.Run to evaluate all setTimeout/setIntervals methods. (#208) * Rebase onto geth1.6.7 (#232) * Got back sync duration from 60s to 30s, updated bindata.go
43 lines
1.1 KiB
Docker
43 lines
1.1 KiB
Docker
FROM ubuntu:xenial
|
|
|
|
# install build + test dependencies
|
|
RUN apt-get update && \
|
|
apt-get install --yes --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
fuse \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
iproute2 \
|
|
iputils-ping \
|
|
less \
|
|
libc6-dev \
|
|
make \
|
|
pkg-config \
|
|
&& \
|
|
apt-get clean
|
|
|
|
# install Go
|
|
ENV GO_VERSION 1.8.1
|
|
RUN curl -fSLo golang.tar.gz "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" && \
|
|
tar -xzf golang.tar.gz -C /usr/local && \
|
|
rm golang.tar.gz
|
|
ENV GOPATH /go
|
|
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
|
|
|
|
# install docker CLI
|
|
RUN curl -fSLo docker.tar.gz https://get.docker.com/builds/Linux/x86_64/docker-17.04.0-ce.tgz && \
|
|
tar -xzf docker.tar.gz -C /usr/local/bin --strip-components=1 docker/docker && \
|
|
rm docker.tar.gz
|
|
|
|
# install jq
|
|
RUN curl -fSLo /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && \
|
|
chmod +x /usr/local/bin/jq
|
|
|
|
# install govendor
|
|
RUN go get -u github.com/kardianos/govendor
|
|
|
|
# add custom bashrc
|
|
ADD bashrc /root/.bashrc
|