085035fa2e
* parity-version: stabelize 1.11
* parity-version: bump stable to 1.11.7
* Don't fetch snapshot chunks at random (#9088)
* Offload cull to IoWorker.
* Limit the number of transactions in pending set (#8777)
* Unordered iterator.
* Use unordered and limited set if full not required.
* Split timeout work into smaller timers.
* Avoid collecting all pending transactions when mining
* Remove println.
* Use priority ordering in eth-filter.
* Fix ethcore-miner tests and tx propagation.
* Review grumbles addressed.
* Add test for unordered not populating the cache.
* Fix ethcore tests.
* Fix light tests.
* Fix ethcore-sync tests.
* Fix RPC tests.
* Make sure to produce full blocks.
* Update hidapi, fixes #7542 (#9108)
* docker: add cmake dependency (#9111)
* Fix miner tests.
* Revert "Make sure to produce full blocks."
This reverts commit b12d5920b2
.
* Update light client hardcoded headers (#9098)
* Insert Kovan hardcoded headers until #7690241
* Insert Kovan hardcoded headers until block 7690241
* Insert Ropsten hardcoded headers until #3612673
* Insert Mainnet hardcoded headers until block 5941249
* Make sure to produce full blocks. (#9115)
* Insert ETC (classic) hardcoded headers until block #6170625 (#9121)
* fix verification in ethcore-sync collect_blocks (#9135)
* `evm bench` fix broken dependencies (#9134)
* `evm bench` use valid dependencies
Benchmarks of the `evm` used stale versions of a couple a crates that
this commit fixes!
* fix warnings
68 lines
1.8 KiB
Docker
68 lines
1.8 KiB
Docker
FROM ubuntu:14.04
|
|
MAINTAINER Parity Technologies <devops@parity.io>
|
|
WORKDIR /build
|
|
#ENV for build TAG
|
|
ARG BUILD_TAG
|
|
ENV BUILD_TAG ${BUILD_TAG:-master}
|
|
RUN echo "Build tag:" $BUILD_TAG
|
|
# install tools and dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y --force-yes --no-install-recommends \
|
|
# make
|
|
build-essential \
|
|
# add-apt-repository
|
|
software-properties-common \
|
|
make \
|
|
cmake \
|
|
curl \
|
|
wget \
|
|
git \
|
|
g++ \
|
|
gcc \
|
|
libc6 \
|
|
libc6-dev \
|
|
binutils \
|
|
file \
|
|
openssl \
|
|
libssl-dev \
|
|
libudev-dev \
|
|
pkg-config \
|
|
dpkg-dev \
|
|
libudev-dev &&\
|
|
# install rustup
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
|
|
# rustup directory
|
|
PATH=/root/.cargo/bin:$PATH && \
|
|
# show backtraces
|
|
RUST_BACKTRACE=1 && \
|
|
# build parity
|
|
cd /build&&git clone https://github.com/paritytech/parity && \
|
|
cd parity && \
|
|
git pull&& \
|
|
git checkout $BUILD_TAG && \
|
|
cargo build --verbose --release --features final && \
|
|
#ls /build/parity/target/release/parity && \
|
|
strip /build/parity/target/release/parity && \
|
|
file /build/parity/target/release/parity&&mkdir -p /parity&& cp /build/parity/target/release/parity /parity&&\
|
|
#cleanup Docker image
|
|
rm -rf /root/.cargo&&rm -rf /root/.multirust&&rm -rf /root/.rustup&&rm -rf /build&&\
|
|
apt-get purge -y \
|
|
# make
|
|
build-essential \
|
|
# add-apt-repository
|
|
software-properties-common \
|
|
make \
|
|
curl \
|
|
wget \
|
|
git \
|
|
g++ \
|
|
gcc \
|
|
binutils \
|
|
file \
|
|
pkg-config \
|
|
dpkg-dev &&\
|
|
rm -rf /var/lib/apt/lists/*
|
|
# setup ENTRYPOINT
|
|
EXPOSE 8080 8545 8180
|
|
ENTRYPOINT ["/parity/parity"]
|