From 01495f1868d07a9855ec146f45cae7c4800dbab1 Mon Sep 17 00:00:00 2001 From: Edgar Simo-Serra Date: Sun, 28 Apr 2024 14:10:34 +0900 Subject: [PATCH] steamruntime probably needs pip too. --- naev-steamruntime/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naev-steamruntime/Dockerfile b/naev-steamruntime/Dockerfile index 0adec05..7327c21 100644 --- a/naev-steamruntime/Dockerfile +++ b/naev-steamruntime/Dockerfile @@ -42,7 +42,7 @@ ENV IMAGE_NAME "naev-steamruntime" # Install pip from steam/debian repositories. RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \ # Naughty: we need libluajit-5.1-dev, libglpk-dev and libsuitesparse-dev, not in the SDK.... All are statically linked when building with the steamruntime option in meson set to true. Also, texinfo is an accidental build dependency for libbfd. - libluajit-5.1-dev libglpk-dev libsuitesparse-dev texinfo && \ + libluajit-5.1-dev libglpk-dev libsuitesparse-dev texinfo python3-pip && \ apt-get clean && \ # Need Meson >=1.2.0 for fancy wrap files. python3 -m pip install meson --upgrade && \