We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e58343 commit 40a7accCopy full SHA for 40a7acc
Dockerfile
@@ -0,0 +1,18 @@
1
+FROM ubuntu:16.04
2
+MAINTAINER Nadezhda Karpova <[email protected]>
3
+
4
+RUN apt-get -y update && \
5
+ apt-get -y install build-essential cmake libudev-dev\
6
+ curl git make g++ gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
7
+ libc6-dev-armhf-cross wget file ca-certificates \
8
+ binutils-arm-linux-gnueabihf
9
10
+# install rustup
11
+RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
12
+RUN git clone https://github.com/paritytech/parity
13
+RUN cd parity;git pull;git checkout "v2.2.9";
14
+RUN cd parity;$HOME/.cargo/bin/cargo build --release && cp target/release/parity /usr/local/bin
15
16
+EXPOSE 8545 8546 30303/tcp
17
18
+ENTRYPOINT ["/usr/local/bin/parity"]
0 commit comments