Browse Source

Add pkg-config package to Stage 0 (#15567)

helix-loop 11 months ago
parent
commit
08297f2f18
2 changed files with 2 additions and 1 deletions
  1. 1 0
      changelog.d/15567.docker
  2. 1 1
      docker/Dockerfile

+ 1 - 0
changelog.d/15567.docker

@@ -0,0 +1 @@
+Add pkg-config package to Stage 0 to be able to build Dockerfile on ppc64le architecture.

+ 1 - 1
docker/Dockerfile

@@ -37,7 +37,7 @@ RUN \
   --mount=type=cache,target=/var/cache/apt,sharing=locked \
   --mount=type=cache,target=/var/lib/apt,sharing=locked \
   apt-get update -qq && apt-get install -yqq \
-  build-essential curl git libffi-dev libssl-dev \
+  build-essential curl git libffi-dev libssl-dev pkg-config \
   && rm -rf /var/lib/apt/lists/*
 
 # Install rust and ensure its in the PATH.