mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
For hash-pinned dependencies, adds comments documenting the associated versions. Adds a pin to `slither-analyzer` which was prior missing. Updates to Monero 0.18.4.4. `mimalloc` now has the correct option set when building for `musl`. A C++ compiler is no longer required in its Docker image. The runtime's `Dockerfile` now symlinks a `libc.so` already present on the image instead of creating one itself. It also builds the runtime within the image to ensure it only happens once. The test to ensure the methodology is reproducible has been updated to not simply create containers from the image, yet rebuild the image entirely, accordingly. This also is more robust and arguably should have already been done. The pin to the exact hash of the `patch-polkadot-sdk` repo in every `Cargo.toml` has been removed. The lockfile already serves that role, simplifying updating in the future. The latest Rust nightly is adopted as well (superseding https://github.com/serai-dex/serai/pull/697). The `librocksdb-sys` patch is replaced with a `kvdb-rocksdb` patch, removing a git dependency, thanks to https://github.com/paritytech/parity-common/pull/950.
54 lines
2.3 KiB
Docker
54 lines
2.3 KiB
Docker
#check=skip=FromPlatformFlagConstDisallowed
|
|
# We want to explicitly set the platform to ensure a constant host environment
|
|
|
|
# rust:1.91.1-alpine as of November 11th, 2025 (GMT)
|
|
FROM --platform=linux/amd64 rust@sha256:700c0959b23445f69c82676b72caa97ca4359decd075dca55b13339df27dc4d3
|
|
|
|
# In order to compile the runtime, including the `proc-macro`s and build scripts, we need the
|
|
# required development libraries. These are traditionally provided by `musl-dev` which is not
|
|
# inherently included with this image (https://github.com/rust-lang/docker-rust/issues/68). While we
|
|
# could install it here, we'd be unable to pin the installed package by its hash as desired.
|
|
#
|
|
# Rust does have self-contained libraries, intended to be used when the desired development files
|
|
# are not otherwise available. These can be enabled with `link-self-contained=yes`. Unfortunately,
|
|
# this doesn't work here (https://github.com/rust-lang/rust/issues/149371).
|
|
#
|
|
# While we can't set `link-self-contained=yes`, we can install Rust's self-contained libraries onto
|
|
# our system so they're generally available.
|
|
RUN echo '#!/bin/sh' > libs.sh
|
|
RUN echo 'set -e' >> libs.sh
|
|
RUN echo 'SYSROOT=$(rustc --print sysroot)' >> libs.sh
|
|
RUN echo 'LIBS=$SYSROOT/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained' >> libs.sh
|
|
RUN echo 'ln -s $LIBS/Scrt1.o $LIBS/crti.o $LIBS/crtn.o /usr/lib' >> libs.sh
|
|
# We also need `libc.so` which is already present on the system, just not under that name
|
|
RUN echo 'ln -s /lib/libc.musl-x86_64.so.1 /usr/lib/libc.so' >> libs.sh
|
|
RUN /bin/sh ./libs.sh
|
|
|
|
# Add the WASM toolchain
|
|
RUN rustup target add wasm32v1-none
|
|
|
|
# Add files for build
|
|
ADD patches /serai/patches
|
|
ADD common /serai/common
|
|
ADD crypto /serai/crypto
|
|
ADD networks /serai/networks
|
|
ADD message-queue /serai/message-queue
|
|
ADD processor /serai/processor
|
|
ADD coordinator /serai/coordinator
|
|
ADD substrate /serai/substrate
|
|
ADD orchestration/Cargo.toml /serai/orchestration/Cargo.toml
|
|
ADD orchestration/src /serai/orchestration/src
|
|
ADD mini /serai/mini
|
|
ADD tests /serai/tests
|
|
ADD Cargo.toml /serai
|
|
ADD Cargo.lock /serai
|
|
ADD AGPL-3.0 /serai
|
|
|
|
WORKDIR /serai
|
|
|
|
# Build the runtime
|
|
RUN cargo build --release -p serai-runtime
|
|
|
|
# Copy the runtime to the provided volume
|
|
CMD ["cp", "/serai/target/release/wbuild/serai-runtime/serai_runtime.wasm", "/volume/serai.wasm"]
|