diff --git a/Dockerfile b/Dockerfile index 159e3eb..8f5b478 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ # Stage 1: Build the rust binary -FROM rust:1.80-slim-bookworm AS builder +FROM rust:1.80-bookworm AS builder -# Install system dependencies +# Install supplementary dependencies that might be needed RUN apt-get update && apt-get install -y \ pkg-config \ libssl-dev \ protobuf-compiler \ + cmake \ && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/app