mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-26 07:38:36 -06:00
28 lines
579 B
Docker
28 lines
579 B
Docker
FROM rust:1 as build
|
|
RUN cargo install cargo-build-deps
|
|
|
|
RUN cargo new --bin simply-shorten
|
|
WORKDIR /simply-shorten
|
|
|
|
COPY ./actix/Cargo.toml .
|
|
COPY ./actix/Cargo.lock .
|
|
|
|
RUN cargo build-deps --release
|
|
|
|
COPY ./actix/src ./src
|
|
COPY ./actix/resources ./resources
|
|
|
|
RUN cargo build --release
|
|
|
|
FROM frolvlad/alpine-glibc:latest
|
|
|
|
EXPOSE 2000
|
|
RUN apk add sqlite-libs
|
|
|
|
WORKDIR /opt
|
|
|
|
COPY --from=build /simply-shorten/target/release/simply-shorten /opt/simply-shorten
|
|
COPY --from=build /simply-shorten/resources /opt/resources
|
|
COPY ./urls.sqlite /opt/urls.sqlite
|
|
|
|
CMD ["./simply-shorten"]
|