Skip to content

Commit

Permalink
copy usr local geth to app
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard-Voiculescu committed May 13, 2024
1 parent 043b1c3 commit 8c9f33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.fh
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ RUN cd /go-ethereum && go mod download

ADD . /go-ethereum
RUN cd /go-ethereum && go run build/ci.go install -static ./cmd/geth
ADD ./geth /app/geth
ADD ./geth /usr/local/bin/geth


# Pull Geth into a second stage deploy alpine container
FROM alpine:latest

RUN apk add --no-cache ca-certificates

COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
COPY --from=builder /go-ethereum/build/bin/geth /app/geth

COPY --from=optimism-node /usr/local/bin/op-node /app/op-node

Expand Down

0 comments on commit 8c9f33d

Please sign in to comment.