Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenRPC #54

Merged
merged 2 commits into from
Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
xinfinnetwork:
image: xinfinorg/xinfinnetwork:xdc_mainnet_v1.0.1
image: xinfinorg/xinfinnetwork:xdc_mainnet_rpc_v1.0.1
volumes:
- "./xdcchain:/work/xdcchain"
- "./genesis.json:/work/genesis.json"
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/xdc-mainet/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.12
FROM golang:1.14

WORKDIR /work

RUN \
apt-get update && apt-get install -y git build-essential && \
git clone https://github.com/XinFinOrg/XDPoS-TestNet-Apothem.git xdcchain && \
(cd xdcchain && git checkout --detach 72138a0bd20a81a377f42bd38cd536d68fe730a1 && make)
(cd xdcchain && git checkout --detach d3963c816b5b1655b5a608e1d81329b4716c41aa && make)

RUN cp /work/xdcchain/build/bin/XDC /usr/bin && chmod +x /usr/bin/XDC && \
rm -rf xdcchain
Expand Down