lite-rpc/Dockerfile

24 lines
764 B
Docker
Raw Normal View History

2023-01-13 11:31:30 -08:00
# syntax = docker/dockerfile:1.2
2023-09-06 13:09:24 -07:00
FROM rust:1.70.0 as base
2023-09-01 03:15:04 -07:00
RUN cargo install cargo-chef --locked
2023-01-13 11:31:30 -08:00
RUN rustup component add rustfmt
RUN apt-get update && apt-get install -y clang cmake ssh
WORKDIR /app
FROM base AS plan
COPY . .
WORKDIR /app
RUN cargo chef prepare --recipe-path recipe.json
FROM base as build
COPY --from=plan /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json
COPY . .
RUN cargo build --release --bin lite-rpc --bin solana-lite-rpc-quic-forward-proxy
2023-01-13 11:31:30 -08:00
FROM debian:bullseye-slim as run
RUN apt-get update && apt-get -y install ca-certificates libc6
COPY --from=build /app/target/release/solana-lite-rpc-quic-forward-proxy /usr/local/bin/
2023-01-13 11:31:30 -08:00
COPY --from=build /app/target/release/lite-rpc /usr/local/bin/
2023-11-27 07:38:50 -08:00
CMD lite-rpc