From 7737e00a606c8227e3d611203097663547781cde Mon Sep 17 00:00:00 2001 From: st170001 Date: Tue, 6 Feb 2024 20:15:21 +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 bc2e7ca..d8bdb1d 100644 --- a/base-dockerfile +++ b/base-dockerfile @@ -22,8 +22,6 @@ RUN cargo build --release --bin misarch-wishlist # 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-wishlist COPY --from=builder /misarch-wishlist/target/release/misarch-wishlist /usr/local/bin ENTRYPOINT ["/usr/local/bin/misarch-wishlist"] \ No newline at end of file diff --git a/dev-dockerfile b/dev-dockerfile index 3520a9c..bf67927 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-wishlist COPY . . diff --git a/devcontainer-dockerfile b/devcontainer-dockerfile index c5fcf40..af17d8a 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-wishlist \ No newline at end of file