1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
chhoto-url/Dockerfile

29 lines
646 B
Text
Raw Normal View History

FROM rust:slim AS build
ENV TARGET x86_64-unknown-linux-musl
RUN apt-get update && apt-get install -y musl-tools
RUN rustup target add "$TARGET"
2023-04-02 22:26:23 -05:00
RUN cargo install cargo-build-deps
2020-02-14 13:17:56 -06:00
RUN cargo new --bin chhoto-url
WORKDIR /chhoto-url
2020-02-14 13:17:56 -06:00
RUN rustup target add x86_64-unknown-linux-musl
2023-04-02 22:26:23 -05:00
COPY ./actix/Cargo.toml .
COPY ./actix/Cargo.lock .
2020-02-14 13:17:56 -06:00
RUN cargo build-deps --release --target=x86_64-unknown-linux-musl
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
COPY ./actix/src ./src
2020-02-14 13:17:56 -06:00
RUN cargo build --release --locked --target "$TARGET"
2023-04-02 16:53:55 -05:00
FROM scratch
2023-04-02 16:53:55 -05:00
COPY --from=build /chhoto-url/target/x86_64-unknown-linux-musl/release/chhoto-url /chhoto-url
COPY ./actix/resources /resources
2023-04-02 22:26:23 -05:00
CMD ["/chhoto-url"]