2023-07-20 00:13:16 +00:00
|
|
|
FROM docker.io/paritytech/ci-linux:production 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
|
|
|
|
|
2023-07-21 08:27:14 +00:00
|
|
|
# Mount the caches and build
|
2023-07-22 05:12:39 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cargo \
|
|
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
|
|
--mount=type=cache,target=/usr/local/cargo/git \
|
2023-07-21 08:27:14 +00:00
|
|
|
--mount=type=cache,target=/serai/target \
|
|
|
|
cd processor && \
|
|
|
|
cargo build --release --all-features && \
|
|
|
|
mkdir /serai/bin && \
|
|
|
|
mv /serai/target/release/serai-processor /serai/bin
|
2023-07-20 00:13:16 +00:00
|
|
|
|
|
|
|
# Prepare Image
|
2023-07-26 02:15:33 +00:00
|
|
|
FROM debian:bullseye-slim as image
|
2023-07-20 00:13:16 +00:00
|
|
|
LABEL description="STAGE 2: Copy and Run"
|
|
|
|
|
|
|
|
WORKDIR /home/serai
|
|
|
|
|
|
|
|
# Copy necessary files to run node
|
2023-07-21 08:27:14 +00:00
|
|
|
COPY --from=builder /serai/bin/* /bin/
|
2023-07-20 00:13:16 +00:00
|
|
|
COPY --from=builder /serai/AGPL-3.0 .
|
|
|
|
|
2023-07-26 01:10:28 +00:00
|
|
|
# Install openssl
|
2023-07-26 02:15:33 +00:00
|
|
|
RUN apt update && apt upgrade -y && apt install -y libssl
|
2023-07-26 01:10:28 +00:00
|
|
|
|
2023-07-20 00:13:16 +00:00
|
|
|
# Run processor
|
2023-07-21 08:27:14 +00:00
|
|
|
CMD ["serai-processor"]
|