18 lines
355 B
Docker
18 lines
355 B
Docker
|
# Build stage
|
||
|
FROM rust:1.86 as builder
|
||
|
WORKDIR /usr/src/app
|
||
|
COPY . .
|
||
|
RUN cargo build --release
|
||
|
|
||
|
# Test stage
|
||
|
FROM builder as test
|
||
|
RUN cargo test
|
||
|
|
||
|
# Production stage
|
||
|
FROM debian:bookworm-slim as production
|
||
|
WORKDIR /usr/src/app
|
||
|
RUN apt update -q
|
||
|
RUN apt install openssl -y -q
|
||
|
COPY --from=builder /usr/src/app/target/release/cait-sith .
|
||
|
CMD ["./cait-sith"]
|