-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cd: include review changes + add chef planner
- Loading branch information
Showing
1 changed file
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
FROM rust:1.68.1 AS builder | ||
RUN apt-get update && apt-get -y upgrade | ||
FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef | ||
WORKDIR app | ||
|
||
FROM chef AS planner | ||
COPY . . | ||
RUN cargo chef prepare --recipe-path recipe.json | ||
|
||
FROM chef AS builder | ||
COPY --from=planner /app/recipe.json recipe.json | ||
RUN cargo chef cook --release --recipe-path recipe.json | ||
COPY . . | ||
RUN cargo build --release | ||
RUN cargo build --release --bin blob-indexer | ||
|
||
|
||
FROM debian:buster-slim | ||
COPY --from=builder ./target/release/blob-indexer ./target/release/blob-indexer | ||
CMD ["/target/release/blob-indexer"] | ||
FROM debian:bullseye-slim AS runtime | ||
WORKDIR app | ||
COPY --from=builder /app/target/release/blob-indexer /usr/local/bin | ||
ENTRYPOINT ["/usr/local/bin/blob-indexer"] |