2023-01-30 17:11:30 -06:00
|
|
|
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
|
|
|
|
|
2023-02-02 17:29:36 -06:00
|
|
|
CMD [ "breeze" ]
|