working version for block size in bytes

This commit is contained in:
kant 2023-11-30 18:21:37 -08:00
parent 588539bbeb
commit 749f59d672
2 changed files with 11 additions and 11 deletions

View file

@ -2,11 +2,11 @@ FROM golang:1.21-alpine AS builder
RUN apk add --no-cache gcc musl-dev linux-headers git make RUN apk add --no-cache gcc musl-dev linux-headers git make
COPY go.mod /go-ethereum/ COPY ../go.mod /go-ethereum/
COPY go.sum /go-ethereum/ COPY ../go.sum /go-ethereum/
RUN cd /go-ethereum && go mod download RUN cd /go-ethereum && go mod download
ADD . /go-ethereum ADD .. /go-ethereum
RUN cd /go-ethereum && go run build/ci.go install -static ./cmd/geth RUN cd /go-ethereum && go run build/ci.go install -static ./cmd/geth
FROM alpine:latest FROM alpine:latest
@ -15,9 +15,9 @@ RUN apk add --no-cache jq
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
COPY genesis.json /genesis.json COPY geth-poa/genesis.json /genesis.json
COPY entrypoint.sh /entrypoint.sh COPY geth-poa/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh

View file

@ -2,8 +2,8 @@ version: '3'
services: services:
bootnode: bootnode:
build: build:
context: . context: ..
dockerfile: Dockerfile dockerfile: geth-poa/Dockerfile
environment: environment:
- GETH_NODE_TYPE=bootnode - GETH_NODE_TYPE=bootnode
- BOOT_KEY=7b548c1c0fbe80ef1eb0aaec2edf26fd20fb0d758e94948cf6c5f2a486e735f6 - BOOT_KEY=7b548c1c0fbe80ef1eb0aaec2edf26fd20fb0d758e94948cf6c5f2a486e735f6
@ -41,8 +41,8 @@ services:
node1: node1:
build: build:
context: . context: ..
dockerfile: Dockerfile dockerfile: geth-poa/Dockerfile
environment: environment:
- GETH_NODE_TYPE=signer - GETH_NODE_TYPE=signer
- BLOCK_SIGNER_ADDRESS=0xd9cd8E5DE6d55f796D980B818D350C0746C25b97 - BLOCK_SIGNER_ADDRESS=0xd9cd8E5DE6d55f796D980B818D350C0746C25b97
@ -71,8 +71,8 @@ services:
node2: node2:
build: build:
context: . context: ..
dockerfile: Dockerfile dockerfile: geth-poa/Dockerfile
environment: environment:
- GETH_NODE_TYPE=signer - GETH_NODE_TYPE=signer
- BLOCK_SIGNER_ADDRESS=0x788EBABe5c3dD422Ef92Ca6714A69e2eabcE1Ee4 - BLOCK_SIGNER_ADDRESS=0x788EBABe5c3dD422Ef92Ca6714A69e2eabcE1Ee4