diff --git a/Dockerfile b/Dockerfile index b7a17e39d..8490a2e0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM rust:latest as builder +FROM rust:bookworm as builder WORKDIR /shotover-proxy COPY ./ ./ -RUN cargo build --release +RUN cargo build -p shotover-proxy --release -FROM debian:bullseye-slim +FROM debian:bookworm-slim COPY --from=builder /shotover-proxy/target/release/shotover-proxy /shotover-proxy