mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
39eae2795f
Removes use of the Parity CI image. Always uses slim variants.
46 lines
1.2 KiB
Docker
46 lines
1.2 KiB
Docker
FROM rust:1.71-slim-bookworm as builder
|
|
LABEL description="STAGE 1: Build"
|
|
|
|
# Add files for build
|
|
ADD common /serai/common
|
|
ADD crypto /serai/crypto
|
|
ADD coins /serai/coins
|
|
ADD message-queue /serai/message-queue
|
|
ADD processor /serai/processor
|
|
ADD coordinator /serai/coordinator
|
|
ADD substrate /serai/substrate
|
|
ADD tests /serai/tests
|
|
ADD Cargo.toml /serai
|
|
ADD Cargo.lock /serai
|
|
ADD AGPL-3.0 /serai
|
|
|
|
WORKDIR /serai
|
|
|
|
RUN apt update && apt install -y clang
|
|
|
|
# Mount the caches and build
|
|
RUN --mount=type=cache,target=/root/.cargo \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/usr/local/cargo/git \
|
|
--mount=type=cache,target=/serai/target \
|
|
cd message-queue && \
|
|
cargo build --release --all-features && \
|
|
mkdir /serai/bin && \
|
|
mv /serai/target/release/serai-message-queue /serai/bin
|
|
|
|
# Prepare Image
|
|
FROM debian:bookworm-slim as image
|
|
LABEL description="STAGE 2: Copy and Run"
|
|
|
|
WORKDIR /home/serai
|
|
|
|
# Copy the Message Queue binary and relevant license
|
|
COPY --from=builder /serai/bin/* /bin/
|
|
COPY --from=builder /serai/AGPL-3.0 .
|
|
|
|
# Upgrade packages
|
|
RUN apt update && apt upgrade -y
|
|
|
|
# Run message-queue
|
|
EXPOSE 2287
|
|
CMD ["serai-message-queue"]
|