From a77fab7d086c0bcbc9c1f3319af520c4271117ca Mon Sep 17 00:00:00 2001 From: Luca P Date: Fri, 11 Mar 2022 22:46:21 +0000 Subject: [PATCH] Install linking system dependencies --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ff72611..9d4ac98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM lukemathwalker/cargo-chef:latest-rust-1.59.0 as chef WORKDIR /app +RUN apt update && apt install lld clang -y FROM chef as planner COPY . .