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

27 lines
531 B
Text
Raw Normal View History

2023-04-02 16:53:55 -05:00
FROM rust:1 as build
2023-04-02 22:26:23 -05:00
RUN cargo install cargo-build-deps
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
RUN cargo new --bin simply-shorten
WORKDIR /simply-shorten
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
COPY ./actix/Cargo.toml .
COPY ./actix/Cargo.lock .
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
RUN cargo build-deps --release
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
COPY ./actix/src ./src
COPY ./actix/resources ./resources
2020-02-14 13:17:56 -06:00
2023-04-02 22:26:23 -05:00
RUN cargo build --release
2023-04-02 16:53:55 -05:00
2023-04-03 11:55:27 -05:00
FROM frolvlad/alpine-glibc:latest
2023-04-02 16:53:55 -05:00
2023-04-03 11:55:27 -05:00
RUN apk add sqlite-libs
2023-04-02 16:53:55 -05:00
2023-04-02 22:26:23 -05:00
WORKDIR /opt
2023-04-02 16:53:55 -05:00
2023-04-02 22:26:23 -05:00
COPY --from=build /simply-shorten/target/release/simply-shorten /opt/simply-shorten
COPY --from=build /simply-shorten/resources /opt/resources
CMD ["./simply-shorten"]