From b690da3916b8c3b59286dc5f2db4c48bc182f555 Mon Sep 17 00:00:00 2001 From: Ertugrul Aypek Date: Sat, 11 Jan 2025 00:26:19 +0100 Subject: [PATCH] install cmake in docker --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 147996daf..ea431e7ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,8 @@ RUN apt-get update && apt-get install -y \ debhelper \ ca-certificates \ protobuf-compiler \ - wget + wget \ + cmake RUN curl https://sh.rustup.rs -sSf | sh -s -- -y ENV PATH "/root/.cargo/bin:${PATH}"