From 55ad1c89bef5446d6f9bd728aa11d97b83cfb1c8 Mon Sep 17 00:00:00 2001 From: konsti Date: Tue, 7 Nov 2023 14:35:56 +0100 Subject: [PATCH] Add pkg-config to builder.dockerfile (#355) --- builder.dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/builder.dockerfile b/builder.dockerfile index ad8d59a3a..1a6ced1d0 100644 --- a/builder.dockerfile +++ b/builder.dockerfile @@ -5,14 +5,15 @@ FROM ubuntu:22.04 # Feel free to add build dependencies you need RUN apt-get update \ && apt-get install -y --no-install-recommends \ + autoconf \ + build-essential \ + curl \ + make \ + pkg-config \ python3 \ python3-dev \ python3-pip \ python3-venv \ - build-essential \ - make \ - autoconf \ - curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y