From 878df7e288403a098b2ba4b25aca78849009dbfb Mon Sep 17 00:00:00 2001 From: paulobressan Date: Thu, 17 Apr 2025 14:17:04 -0300 Subject: [PATCH] fix: added dockerfile build dependence m4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 02d248b..afb01fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM rust:1.85.0-slim-bullseye AS build WORKDIR /app RUN apt update -RUN apt install -y build-essential pkg-config libssl-dev libsasl2-dev cmake +RUN apt install -y build-essential pkg-config libssl-dev libsasl2-dev cmake m4 COPY ./Cargo.toml ./Cargo.toml COPY . .