From bb50024ea140a6b7130b94ce7148b23d22c8d984 Mon Sep 17 00:00:00 2001 From: Aviram Hassan Date: Thu, 28 Apr 2022 18:29:58 +0300 Subject: [PATCH] fix: dockerfile lacks cmake installation to build correctly --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fead15..a49a36c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ ## [Unreleased] +## 2.0.0-alpha-1 - 28/4/2022 +### Misc +* Fix image build lacks cmake + ## 2.0.0-alpha - 27/4/2022 ### Refactor * The code was refactored to support new upcoming features. diff --git a/Dockerfile b/Dockerfile index 81c7d38..e792d8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM rust:latest as build-env -RUN apt update && apt install -y libpcap-dev +RUN apt update && apt install -y libpcap-dev cmake RUN rustup component add rustfmt WORKDIR /app COPY . /app