From ca5bd0ad63a95cabe7c45759043d430ea0cd639e Mon Sep 17 00:00:00 2001 From: st170001 Date: Tue, 6 Feb 2024 20:09:23 +0100 Subject: [PATCH] Removed unused protobuf dependency --- base-dockerfile | 2 -- dev-dockerfile | 2 -- devcontainer-dockerfile | 2 -- 3 files changed, 6 deletions(-) diff --git a/base-dockerfile b/base-dockerfile index cb7554b..3923929 100644 --- a/base-dockerfile +++ b/base-dockerfile @@ -22,8 +22,6 @@ RUN cargo build --release --bin misarch-review # We do not need the Rust toolchain to run the binary! FROM debian:bookworm-slim AS runtime -RUN apt update && apt install -y protobuf-compiler && rm -rf /var/lib/apt/lists/* - WORKDIR /misarch-review COPY --from=builder /misarch-review/target/release/misarch-review /usr/local/bin ENTRYPOINT ["/usr/local/bin/misarch-review"] \ No newline at end of file diff --git a/dev-dockerfile b/dev-dockerfile index 8358685..3a49469 100644 --- a/dev-dockerfile +++ b/dev-dockerfile @@ -1,7 +1,5 @@ FROM rust:1.75-slim-bookworm -RUN apt update && apt install -y protobuf-compiler && rm -rf /var/lib/apt/lists/* - WORKDIR /usr/src/misarch-review COPY . . diff --git a/devcontainer-dockerfile b/devcontainer-dockerfile index a386e1e..63ef32d 100644 --- a/devcontainer-dockerfile +++ b/devcontainer-dockerfile @@ -1,5 +1,3 @@ FROM rust:1.75-slim-bookworm -RUN apt update && apt install -y protobuf-compiler && rm -rf /var/lib/apt/lists/* - WORKDIR /usr/src/misarch-review \ No newline at end of file