mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef
|
|
WORKDIR /app
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/paradigmxyz/reth
|
|
LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"
|
|
|
|
RUN apt-get update && apt-get -y upgrade && apt-get install -y libclang-dev pkg-config
|
|
|
|
FROM chef AS planner
|
|
COPY . .
|
|
RUN cargo chef prepare --recipe-path recipe.json
|
|
|
|
FROM chef AS builder
|
|
COPY --from=planner /app/recipe.json recipe.json
|
|
COPY . .
|
|
|
|
ARG BUILD_PROFILE=release
|
|
ENV BUILD_PROFILE=$BUILD_PROFILE
|
|
|
|
ARG RUSTFLAGS=""
|
|
ENV RUSTFLAGS="$RUSTFLAGS"
|
|
|
|
RUN cargo chef cook --profile $BUILD_PROFILE --recipe-path recipe.json --manifest-path /app/crates/optimism/bin/Cargo.toml
|
|
|
|
COPY . .
|
|
RUN cargo build --profile $BUILD_PROFILE --bin op-reth --manifest-path /app/crates/optimism/bin/Cargo.toml
|
|
|
|
RUN ls -la /app/target/$BUILD_PROFILE/op-reth
|
|
RUN cp /app/target/$BUILD_PROFILE/op-reth /app/op-reth
|
|
|
|
FROM ubuntu:22.04 AS runtime
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y ca-certificates libssl-dev pkg-config strace && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY --from=builder /app/op-reth /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/op-reth
|
|
COPY LICENSE-* ./
|
|
|
|
EXPOSE 30303 30303/udp 9001 8545 8546 7545 8551
|
|
ENTRYPOINT ["/usr/local/bin/op-reth"]
|