mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
This PR remove the `cargo chef` step used to build the docker image used in deployment. We noticed that `cargo chef` was adding more time to the build and that removing it was saving us 40min. Also in this PR, we removed the base image from parity which was really heavy and was filling the rest of the disk space. This broke the build. After some investigation it doesn't seem to add a lot to the build. It has been replace with the official rust image as a base to build our node. The image used to run the image has been replaced with `debian:trixie-slim`. In the end those changed **should not** break any of the current behavior and makes save a bit of CI time.
50 lines
No EOL
1.6 KiB
Docker
50 lines
No EOL
1.6 KiB
Docker
# --- Setup Build Environment ---
|
|
FROM rust:latest AS base
|
|
|
|
ARG MOLD_VERSION=2.40.4
|
|
ARG PROTOC_VER=21.12
|
|
ARG SCCACHE_VERSION=0.10.0
|
|
ARG FAST_RUNTIME=FALSE
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
xz-utils \
|
|
clang \
|
|
libpq-dev \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& echo "Installing protoc v${PROTOC_VER}..." \
|
|
&& curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/protoc-${PROTOC_VER}-linux-x86_64.zip" \
|
|
&& unzip -q protoc.zip -d /usr/local/ \
|
|
&& rm protoc.zip
|
|
|
|
# --- Build dependencies using cargo-chef ---
|
|
FROM base AS builder
|
|
WORKDIR /datahaven
|
|
|
|
COPY . /datahaven
|
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/usr/local/cargo/git \
|
|
if [ "$FAST_RUNTIME" = "TRUE" ]; then \
|
|
cargo build --locked --release --features fast-runtime; \
|
|
else \
|
|
cargo build --locked --release; \
|
|
fi
|
|
|
|
# --- Create final lightweight runtime image ---
|
|
FROM debian:trixie-slim
|
|
COPY --from=builder /datahaven/target/release/datahaven-node /usr/local/bin
|
|
|
|
USER root
|
|
RUN apt-get update && apt-get install -y gcc libc6-dev libpq-dev && rm -rf /var/lib/apt/lists/*
|
|
RUN useradd -m -u 1001 -U -s /bin/sh -d /datahaven datahaven && \
|
|
mkdir -p /data /datahaven/.local/share && \
|
|
chown -R datahaven:datahaven /data && \
|
|
ln -s /data /datahaven/.local/share/datahaven && \
|
|
/usr/local/bin/datahaven-node --version
|
|
|
|
USER datahaven
|
|
|
|
EXPOSE 30333 9944 9615
|
|
VOLUME ["/data"]
|
|
|
|
ENTRYPOINT ["/usr/local/bin/datahaven-node"] |