commit a3effcfd4c45dacc116e39a46e9af7f22a6c94da parent a94aea7c57bc03e163232665d27436bacc9d6cc4 Author: Florian Dold <florian@dold.me> Date: Fri, 24 Feb 2023 00:16:22 +0100 sandcastle: add python3-venv dependency Diffstat:
| M | sandcastle/images/base/Dockerfile | | | 46 | +++++++++++++++++++++++++++++++++++++++------- |
1 file changed, 39 insertions(+), 7 deletions(-)
diff --git a/sandcastle/images/base/Dockerfile b/sandcastle/images/base/Dockerfile @@ -1,13 +1,45 @@ FROM debian:bookworm RUN apt-get update -RUN apt-get install -y autoconf autopoint libtool texinfo \ - libgcrypt-dev libidn11-dev zlib1g-dev libunistring-dev \ - libjansson-dev python3-pip git recutils libsqlite3-dev \ - libpq-dev postgresql libcurl4-openssl-dev libsodium-dev git \ - libqrencode-dev zip jq npm openjdk-17-jre nginx procps \ - curl python3-jinja2 wget curl python3-sphinx socat apache2-utils \ - python3-sphinx-rtd-theme sqlite3 vim emacs nodejs +RUN apt-get install -y \ + autoconf \ + autopoint \ + libtool \ + texinfo \ + libgcrypt-dev \ + libidn11-dev \ + zlib1g-dev \ + libunistring-dev \ + libjansson-dev \ + git \ + recutils \ + libsqlite3-dev \ + libpq-dev \ + postgresql \ + libcurl4-openssl-dev \ + libsodium-dev \ + libqrencode-dev \ + zip \ + jq \ + npm \ + openjdk-17-jre \ + nginx \ + procps \ + curl \ + python3-jinja2 \ + wget \ + curl \ + socat \ + apache2-utils \ + python3-pip \ + python3-sphinx \ + python3-sphinx-rtd-theme \ + python3-venv \ + sqlite3 \ + vim \ + emacs \ + nodejs + # FIXME: Try to use debian packages where possible and otherwise really use # a venv or per-user installation of the package. RUN pip3 install --break-system-packages requests click poetry uwsgi htmlark