CaitSith/Dockerfile
Wyatt J. Miller 6729de6d93
Some checks failed
build / docker (push) Failing after 13m24s
deploy update
2025-04-19 21:07:25 -04:00

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"]