Skip to content

Commit

Permalink
Install pkg-config (#239)
Browse files Browse the repository at this point in the history
add `pkg-config` to the rust images for openssl-sys
  • Loading branch information
Bae Joon Hoo authored Apr 29, 2024
1 parent 3798aba commit 98324b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust/1.56/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rust/1.60/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rust/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98324b8

Please sign in to comment.