From 059356ccd832916bdfbeff630844b2e7394d6c93 Mon Sep 17 00:00:00 2001 From: tecnovert Date: Wed, 25 Dec 2024 10:49:07 +0200 Subject: [PATCH] docker: Add ninja-build package Issue #183 --- Dockerfile | 2 +- docker/production/swapclient/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97c62f0..96253bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ENV LANG=C.UTF-8 \ RUN apt-get update; \ apt-get install -y --no-install-recommends \ - python3-pip libpython3-dev gnupg pkg-config gcc libc-dev gosu tzdata; + python3-pip libpython3-dev gnupg pkg-config gcc libc-dev gosu tzdata cmake ninja-build; # Install requirements first so as to skip in subsequent rebuilds COPY ./requirements.txt requirements.txt diff --git a/docker/production/swapclient/Dockerfile b/docker/production/swapclient/Dockerfile index 47c6348..0a069ef 100644 --- a/docker/production/swapclient/Dockerfile +++ b/docker/production/swapclient/Dockerfile @@ -6,7 +6,7 @@ ENV LANG=C.UTF-8 \ RUN apt-get update; \ apt-get install -y --no-install-recommends \ - python3-pip libpython3-dev gnupg pkg-config gcc libc-dev gosu tzdata wget unzip; + python3-pip libpython3-dev gnupg pkg-config gcc libc-dev gosu tzdata wget unzip cmake ninja-build; ARG BASICSWAP_URL=https://github.com/basicswap/basicswap/archive/master.zip ARG BASICSWAP_DIR=basicswap-master