fixturenet-optimism-stack/container-build/cerc-optimism-op-node/Dockerfile
Adwait Gharpure 963b989457
Upgrade Optimism to latest release (#1)
* Update optimism contracts script

* Add l2-config-generation service to compose file

* Pass flag to op-node for lighthouse beacon API endpoint

* Remove command to copy op-bindings from Dockerfiles in container-build directory

* Remove unnecessary commands

* Retrieve L1 chain id from env in compose file

* Add missing $

* Check if config files already exist

* Return if both config outfiles exist
2024-07-18 20:27:06 +05:30

32 lines
708 B
Docker

FROM golang:1.21.0-alpine3.18 as builder
ARG VERSION=v0.0.0
RUN apk add --no-cache make gcc musl-dev linux-headers git jq bash
# build op-node with the shared go.mod & go.sum files
COPY ./op-node /app/op-node
COPY ./op-chain-ops /app/op-chain-ops
COPY ./op-service /app/op-service
COPY ./op-plasma /app/op-plasma
COPY ./op-conductor /app/op-conductor
COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum
COPY ./.git /app/.git
WORKDIR /app/op-node
RUN go mod download
ARG TARGETOS TARGETARCH
RUN make op-node VERSION="$VERSION" GOOS=$TARGETOS GOARCH=$TARGETARCH
FROM alpine:3.18
RUN apk add --no-cache openssl jq bash curl
COPY --from=builder /app/op-node/bin/op-node /usr/local/bin
CMD ["op-node"]