From 4b4ee8e337e7c6eae6e1c44232cb67e244c7d109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20J=C3=B6rgensen?= Date: Wed, 5 Nov 2025 15:35:50 +0100 Subject: [PATCH] Add curl dev to ubuntu dockerfile & update readme --- README.md | 2 +- docker-files/bc-dev-ubuntu-22-04-lts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6c519168..7d460897a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following QT optional modules are required: qt5compat, qtmultimedia qtnetwor If you wan't to build with Crash handler, you need to install the following tools: - clang -- curl +- curl dev (for C development headers) (ex: `sudo apt install libcurl4-openssl-dev`) - httplib2 v0.22.0 (use `pip install httplib2==0.22.0` or `pip3 install httplib2==0.22.0`) ### Set your environment diff --git a/docker-files/bc-dev-ubuntu-22-04-lts b/docker-files/bc-dev-ubuntu-22-04-lts index 778792ace..a496ea211 100644 --- a/docker-files/bc-dev-ubuntu-22-04-lts +++ b/docker-files/bc-dev-ubuntu-22-04-lts @@ -67,6 +67,7 @@ RUN sudo apt-get install -y gnupg2 RUN sudo apt-get install -y wget # Install crashpad build tools +RUN sudo apt-get install -y libcurl4-openssl-dev RUN sudo pip3 install httplib2==0.22.0 # Configure user bc