2515878eeb
* Remove unnecessary todos * Set option to log commands in shell scripts * Replace fixturenet-eth dependency with wait on endpoint * Skip lighthouse node dependency check * Update all services in the stack * Use debug flag to enable shell commands logging * Add bash in op-batcher container * Update mobymask-v2 instructions * Update fixturenet-optimism instructions * Add descriptions for services * Move ts files to container-build * Take L1 RPC endpoint from the env file * Add dev mode restriction for editing env file
33 lines
715 B
Docker
33 lines
715 B
Docker
FROM golang:1.19.0-alpine3.15 as builder
|
|
|
|
ARG VERSION=v0.0.0
|
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers git jq bash
|
|
|
|
# build op-batcher with the shared go.mod & go.sum files
|
|
COPY ./op-batcher /app/op-batcher
|
|
COPY ./op-bindings /app/op-bindings
|
|
COPY ./op-node /app/op-node
|
|
COPY ./op-service /app/op-service
|
|
COPY ./op-signer /app/op-signer
|
|
COPY ./go.mod /app/go.mod
|
|
COPY ./go.sum /app/go.sum
|
|
|
|
COPY ./.git /app/.git
|
|
|
|
WORKDIR /app/op-batcher
|
|
|
|
RUN go mod download
|
|
|
|
ARG TARGETOS TARGETARCH
|
|
|
|
RUN make op-batcher VERSION="$VERSION" GOOS=$TARGETOS GOARCH=$TARGETARCH
|
|
|
|
FROM alpine:3.15
|
|
|
|
RUN apk add --no-cache jq bash
|
|
|
|
COPY --from=builder /app/op-batcher/bin/op-batcher /usr/local/bin
|
|
|
|
ENTRYPOINT ["op-batcher"]
|