136 lines
4.5 KiB
Docker
136 lines
4.5 KiB
Docker
FROM debian:bullseye-slim as rust
|
|
|
|
WORKDIR /app
|
|
ENV CARGO_UNSTABLE_SPARSE_REGISTRY true
|
|
ENV CARGO_TERM_COLOR always
|
|
ENV PATH "/root/.foundry/bin:/root/.cargo/bin:${PATH}"
|
|
|
|
# install rustup dependencies
|
|
# also install web3-proxy system dependencies. most things are rust-only, but not everything
|
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
|
\
|
|
apt-get update && \
|
|
apt-get install --no-install-recommends --yes \
|
|
build-essential \
|
|
ca-certificates \
|
|
cmake \
|
|
curl \
|
|
git \
|
|
liblz4-dev \
|
|
libpthread-stubs0-dev \
|
|
libsasl2-dev \
|
|
libzstd-dev \
|
|
make \
|
|
pkg-config
|
|
|
|
# install rustup
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
\
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none --profile=minimal
|
|
|
|
# run a cargo command which install our desired version of rust
|
|
COPY rust-toolchain.toml ./
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
\
|
|
cargo check || [ "$?" -eq 101 ]
|
|
|
|
# chef splits up the rust build to hopefully cache better
|
|
# hakari manages a 'workspace-hack' to hopefully build faster
|
|
# nextest runs tests in parallel
|
|
# We only pay the installation cost once, it will be cached from the second build onwards
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
\
|
|
cargo install --locked cargo-chef cargo-hakari cargo-nextest
|
|
|
|
# foundry/anvil are needed to run tests
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
\
|
|
curl -L https://foundry.paradigm.xyz | bash && foundryup
|
|
|
|
# changing our features doesn't change any of the steps above
|
|
ENV WEB3_PROXY_FEATURES "rdkafka-src,connectinfo"
|
|
|
|
# chef plan
|
|
COPY . .
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
\
|
|
cargo chef prepare --recipe-path recipe.json
|
|
|
|
FROM rust as build_tests
|
|
|
|
# chef cook the test app
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
\
|
|
cargo chef cook --recipe-path recipe.json
|
|
|
|
# test the application with cargo-nextest
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
\
|
|
cargo hakari generate --diff && \
|
|
cargo hakari manage-deps --dry-run && \
|
|
RUST_LOG=web3_proxy=trace,info cargo --locked nextest run --features "$WEB3_PROXY_FEATURES" --no-default-features && \
|
|
touch /test_success
|
|
|
|
FROM rust as build_app
|
|
|
|
# chef cook the app
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
\
|
|
cargo chef cook --release --recipe-path recipe.json
|
|
|
|
# build the application
|
|
# using a "release" profile (which install does by default) is **very** important
|
|
# TODO: use the "faster_release" profile which builds with `codegen-units = 1`
|
|
RUN --mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
\
|
|
cargo install \
|
|
--features "$WEB3_PROXY_FEATURES" \
|
|
--locked \
|
|
--no-default-features \
|
|
--path ./web3_proxy \
|
|
--root /usr/local/bin \
|
|
;
|
|
|
|
# copy this file so that docker actually creates the build_tests container
|
|
# without this, the runtime container doesn't need build_tests and so docker build skips it
|
|
COPY --from=build_tests /test_success /
|
|
|
|
#
|
|
# We do not need the Rust toolchain to run the binary!
|
|
#
|
|
FROM debian:bullseye-slim AS runtime
|
|
|
|
# Create llama user to avoid running container with root
|
|
RUN mkdir /llama \
|
|
&& adduser --home /llama --shell /sbin/nologin --gecos '' --no-create-home --disabled-password --uid 1001 llama \
|
|
&& chown -R llama /llama
|
|
|
|
USER llama
|
|
|
|
ENTRYPOINT ["web3_proxy_cli"]
|
|
CMD [ "--config", "/web3-proxy.toml", "proxyd" ]
|
|
|
|
# TODO: lower log level when done with prototyping
|
|
ENV RUST_LOG "warn,ethers_providers::rpc=off,web3_proxy=debug,web3_proxy::rpcs::consensus=info,web3_proxy_cli=debug"
|
|
|
|
# we copy something from build_tests just so that docker actually builds it
|
|
COPY --from=build_app /usr/local/bin/* /usr/local/bin/
|
|
|
|
# make sure the app works
|
|
RUN web3_proxy_cli --help
|