Add pkg-config to builder.dockerfile (#355)

This commit is contained in:
konsti 2023-11-07 14:35:56 +01:00 committed by GitHub
parent c11586f2f0
commit 55ad1c89be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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