forked from pterodactyl/yolks
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:1.56-slim | |
LABEL author="Ethan Coward" maintainer="[email protected]" | ||
|
||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:1.60-slim | |
LABEL author="Ethan Coward" maintainer="[email protected]" | ||
|
||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH rust:slim | |
LABEL author="Ethan Coward" maintainer="[email protected]" | ||
|
||
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 | ||
|