mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 23:10:22 +07:00
26 lines
415 B
Docker
26 lines
415 B
Docker
FROM rust:1.44.1-slim AS base
|
|
|
|
ENV USER=root
|
|
|
|
WORKDIR /usr/local/src/index/
|
|
|
|
RUN cargo init
|
|
COPY ./Cargo.toml ./Cargo.toml
|
|
RUN cargo fetch
|
|
|
|
COPY ./src/ ./src/
|
|
|
|
CMD [ "cargo", "test", "--offline" ]
|
|
|
|
FROM base AS builder
|
|
|
|
RUN cargo build --release --offline
|
|
|
|
FROM rust:1.44.1-slim
|
|
|
|
COPY --from=builder /usr/local/src/index/target/release/index /usr/local/bin/index
|
|
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/index" ]
|