Skip to content

Commit

Permalink
build: use latest stable instead of latest
Browse files Browse the repository at this point in the history
  • Loading branch information
nugaon committed Oct 11, 2023
1 parent 33ce096 commit f3caff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orchestrator/builder/blockchain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ethereum/client-go
FROM ethereum/client-go:stable
COPY . /root
EXPOSE 9545 9546 30303 30303/udp
ENTRYPOINT ["geth"]
2 changes: 1 addition & 1 deletion orchestrator/builder/blockchain/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CONTAINER_IN_DOCKER=$(docker container ls -qaf name=$NAME)

if [ -z "$CONTAINER_IN_DOCKER" ]; then
docker run -p 9545:9545 --network $NETWORK --name $NAME -v $MY_PATH:/root -d \
ethereum/client-go --allow-insecure-unlock \
ethereum/client-go:stable --allow-insecure-unlock \
--unlock 0xCEeE442a149784faa65C35e328CCd64d874F9a02 --password /root/password \
--mine --miner.etherbase=0xCEeE442a149784faa65C35e328CCd64d874F9a02 \
--http --http.api="debug,web3,eth,txpool,net,personal,db" --http.corsdomain=* --http.port=9545 --http.addr=0.0.0.0 --http.vhosts=* \
Expand Down

0 comments on commit f3caff4

Please sign in to comment.