render_cdk 0.0.2

This crate provides a streamlined interface for interacting with Render, a platform that allows you to build, deploy, and scale your apps with ease.
Documentation
FROM rust:latest AS chef

WORKDIR /render_cdk

RUN cargo install cargo-chef --locked

FROM chef AS planner

COPY . .

RUN cargo chef prepare --recipe-path recipe.json

FROM chef AS bulder

COPY --from=planner /render_cdk/recipe.json recipe.json

RUN cargo chef cook --release --recipe-path recipe.json

COPY . .

RUN cargo build --release

# CMD [ "./target/release/render_cdk" ]