Skip to content

Commit

Permalink
dockerfile: use meson from backports in staging container
Browse files Browse the repository at this point in the history
The previous comments update to the latest version of meson for the
normal build container but should have updated the staging container.
Let's update the container now.

Don't revert the previous commits so we fetch deprecated warnings in the
meson build files in the project.

Signed-off-by: Daniel Wagner <[email protected]>
  • Loading branch information
igaw committed Sep 26, 2024
1 parent 85d437a commit 5d7f0cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions staging/Dockerfile.debian.staging
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-slim
FROM debian:bookworm-backports

ARG TARGETPLATFORM
ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -8,7 +8,7 @@ RUN apt-get update && \
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \
apt-get install --no-install-recommends -y \
gcc g++ pkg-config libpkgconf-dev libcurl4-openssl-dev libarchive-dev \
ca-certificates git make meson libpam-dev libcap-ng-dev python3 && \
ca-certificates git make meson/bookworm-backports libpam-dev libcap-ng-dev python3 && \
apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

0 comments on commit 5d7f0cf

Please sign in to comment.