This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 1stable` for docker hub Former-commit-id: b884729
- Loading branch information
1 parent
10e17a5
commit e810e79
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER Parity Technologies <[email protected]> | ||
WORKDIR /build | ||
# 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 \ | ||
curl \ | ||
wget \ | ||
git \ | ||
g++ \ | ||
gcc \ | ||
libc6 \ | ||
libc6-dev \ | ||
binutils \ | ||
file \ | ||
openssl \ | ||
libssl-dev \ | ||
pkg-config \ | ||
dpkg-dev \ | ||
# evmjit dependencies | ||
zlib1g-dev \ | ||
libedit-dev \ | ||
libudev-dev &&\ | ||
# cmake and llvm ppa's. then update ppa's | ||
add-apt-repository -y "ppa:george-edison55/cmake-3.x" && \ | ||
add-apt-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" && \ | ||
apt-get update && \ | ||
apt-get install -y --force-yes cmake llvm-3.7-dev && \ | ||
# install evmjit | ||
git clone https://github.com/debris/evmjit && \ | ||
cd evmjit && \ | ||
mkdir build && cd build && \ | ||
cmake .. && make && make install && cd && \ | ||
# 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/ethcore/parity && \ | ||
cd parity && \ | ||
git pull&& \ | ||
git checkout $CI_BUILD_REF_NAME && \ | ||
cargo build --verbose --release && \ | ||
#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 \ | ||
# evmjit dependencies | ||
zlib1g-dev \ | ||
libedit-dev \ | ||
cmake llvm-3.7-dev&&\ | ||
rm -rf /var/lib/apt/lists/* | ||
# setup ENTRYPOINT | ||
EXPOSE 8080 8545 8180 | ||
ENTRYPOINT ["/parity/parity"] |