From 98324b85235b4831b2cdc4f38909853addb8e945 Mon Sep 17 00:00:00 2001 From: Bae Joon Hoo Date: Tue, 30 Apr 2024 01:50:45 +0900 Subject: [PATCH] Install `pkg-config` (#239) add `pkg-config` to the rust images for openssl-sys --- rust/1.56/Dockerfile | 2 +- rust/1.60/Dockerfile | 2 +- rust/latest/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/1.56/Dockerfile b/rust/1.56/Dockerfile index 2a33e68..7e655cf 100644 --- a/rust/1.56/Dockerfile +++ b/rust/1.56/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:1.56-slim LABEL author="Ethan Coward" maintainer="ethan.coward@icloud.com" RUN apt update \ - && apt -y install git dnsutils curl iproute2 ffmpeg tini \ + && apt -y install git dnsutils curl iproute2 ffmpeg tini pkg-config \ && useradd -m -d /home/container container USER container diff --git a/rust/1.60/Dockerfile b/rust/1.60/Dockerfile index 3262022..e637221 100644 --- a/rust/1.60/Dockerfile +++ b/rust/1.60/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:1.60-slim LABEL author="Ethan Coward" maintainer="ethan.coward@icloud.com" RUN apt update \ - && apt -y install git dnsutils curl iproute2 ffmpeg tini \ + && apt -y install git dnsutils curl iproute2 ffmpeg tini pkg-config \ && useradd -m -d /home/container container USER container diff --git a/rust/latest/Dockerfile b/rust/latest/Dockerfile index e29edeb..cae3044 100644 --- a/rust/latest/Dockerfile +++ b/rust/latest/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:slim LABEL author="Ethan Coward" maintainer="ethan.coward@icloud.com" RUN apt update \ - && apt -y install git dnsutils curl iproute2 ffmpeg tini \ + && apt -y install git dnsutils curl iproute2 ffmpeg tini pkg-config \ && useradd -m -d /home/container container USER container