Add pkg-config to Dockerfiles

This commit is contained in:
Luke Parker 2023-07-26 03:57:13 -04:00
parent f306618e84
commit bdbeedc723
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ ADD AGPL-3.0 /serai
WORKDIR /serai
RUN apt update && apt install -y clang
RUN apt update && apt install -y pkg-config clang
# Mount the caches and build
RUN --mount=type=cache,target=/root/.cargo \

View file

@ -16,7 +16,7 @@ ADD AGPL-3.0 /serai
WORKDIR /serai
RUN apt update && apt upgrade -y && apt install -y clang libssl-dev
RUN apt update && apt upgrade -y && apt install -y pkg-config clang libssl-dev
# Add the wasm toolchain
RUN rustup target add wasm32-unknown-unknown

View file

@ -16,7 +16,7 @@ ADD AGPL-3.0 /serai
WORKDIR /serai
RUN apt update && apt upgrade -y && apt install -y git make clang libssl-dev protobuf-compiler
RUN apt update && apt upgrade -y && apt install -y git pkg-config make clang libssl-dev protobuf-compiler
# Add the wasm toolchain
RUN rustup target add wasm32-unknown-unknown