File tree 6 files changed +17
-8
lines changed
6 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
- ARG branch=amd64-master-latest
1
+ ARG baseimage=statusim/nimbus-fluffy
2
+ ARG tag=amd64-master-latest
2
3
3
- FROM statusim/nimbus-fluffy:$branch
4
+ FROM $baseimage:$tag
4
5
5
6
ADD fluffy.sh /fluffy.sh
6
7
RUN chmod +x /fluffy.sh
Original file line number Diff line number Diff line change 1
- FROM portalnetwork/trin:latest-bridge
1
+ ARG baseimage=portalnetwork/trin
2
+ ARG tag=latest-bridge
3
+
4
+ FROM $baseimage:$tag
2
5
3
6
ADD https://raw.githubusercontent.com/ethereum/portal-spec-tests/master/tests/mainnet/history/hive/test_data_collection_of_forks_blocks.yaml /test_data_collection_of_forks_blocks.yaml
4
7
ADD trin_bridge.sh /trin_bridge.sh
Original file line number Diff line number Diff line change 13
13
exit 1
14
14
fi
15
15
16
- RUST_LOG=debug portal-bridge --node-count 1 $FLAGS --executable-path ./usr/bin/trin --mode test:/test_data_collection_of_forks_blocks.yaml --el-provider test --external-ip $IP_ADDR --epoch-accumulator-path . trin
16
+ RUST_LOG=trace portal-bridge --node-count 1 $FLAGS --executable-path ./usr/bin/trin --mode test:/test_data_collection_of_forks_blocks.yaml --el-provider test --external-ip $IP_ADDR --epoch-accumulator-path . trin
Original file line number Diff line number Diff line change 1
- ARG branch=latest
1
+ ARG baseimage=portalnetwork/trin
2
+ ARG tag=latest
2
3
3
- FROM portalnetwork/trin:$branch
4
+ FROM $baseimage:$tag
4
5
5
6
ADD trin.sh /trin.sh
6
7
RUN chmod +x /trin.sh
Original file line number Diff line number Diff line change 16
16
FLAGS=" $FLAGS --networks history"
17
17
fi
18
18
19
- RUST_LOG=debug trin --web3-transport http --web3-http-address http://0.0.0.0:8545 --external-address " $IP_ADDR " :9009 --bootnodes none $FLAGS
19
+ RUST_LOG=trace trin --web3-transport http --web3-http-address http://0.0.0.0:8545 --external-address " $IP_ADDR " :9009 --bootnodes none $FLAGS
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/ethereumjs/ultralight:latest
1
+
2
+ ARG baseimage=ghcr.io/ethereumjs/ultralight
3
+ ARG tag=latest
4
+
5
+ FROM $baseimage:$tag
2
6
3
7
COPY ultralight.sh /ultralight.sh
4
8
RUN chmod +x /ultralight.sh
You can’t perform that action at this time.
0 commit comments