diff --git a/Dockerfile b/Dockerfile index 2fa3761..77c12ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM rust:1.67.0 as builder - -WORKDIR /usr/src/breeze -COPY . . -RUN [ "cargo", "install", "--path", "." ] - -FROM debian:bullseye-slim -COPY --from=builder /usr/local/cargo/bin/breeze /usr/local/bin/breeze - -CMD [ "breeze" ] \ No newline at end of file +FROM rust:1.70 as builder + +WORKDIR /usr/src/breeze +COPY . . +RUN [ "cargo", "install", "--path", "." ] + +FROM debian:bullseye-slim +COPY --from=builder /usr/local/cargo/bin/breeze /usr/local/bin/breeze + +CMD [ "breeze" ]