1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 21:33:54 -05:00
chhoto-url/Dockerfile

27 lines
883 B
Text
Raw Normal View History

FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef
WORKDIR /chhoto-url
2020-02-14 13:17:56 -06:00
FROM chef as planner
COPY ./actix/Cargo.toml ./actix/Cargo.lock .
COPY ./actix/src ./src
RUN cargo chef prepare --recipe-path recipe.json
FROM chef as builder
RUN apt-get update && apt-get install -y musl-tools
RUN rustup target add x86_64-unknown-linux-musl
2020-02-14 13:17:56 -06:00
COPY --from=planner /chhoto-url/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer
RUN cargo chef cook --release --target=x86_64-unknown-linux-musl --recipe-path recipe.json
2020-02-14 13:17:56 -06:00
COPY ./actix/Cargo.toml ./actix/Cargo.lock .
2023-04-02 22:26:23 -05:00
COPY ./actix/src ./src
# Build application
RUN cargo build --release --target=x86_64-unknown-linux-musl --locked --bin chhoto-url
2023-04-02 16:53:55 -05:00
FROM scratch
COPY --from=builder /chhoto-url/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
COPY ./resources /resources
ENTRYPOINT ["/chhoto-url"]
2023-04-02 22:26:23 -05:00