fix: docker build

This commit is contained in:
2025-03-31 12:04:44 +01:00
parent 6a8f1826bb
commit 36069bb6a7

View File

@ -3,7 +3,7 @@ ARG IMAGE=rust:bookworm
FROM $IMAGE AS build
WORKDIR /app/src
COPY . .
RUN apt update && apt -y install protobuf-compiler
RUN apt update && apt -y install protobuf-compiler libvirt-dev
RUN cargo test && cargo install --path . --root /app/build
FROM $IMAGE AS runner