taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

debian-trixie.Dockerfile (1309B)


      1 FROM debian:trixie
      2 # This file is in the public domain.
      3 #
      4 # Docker image to build Ubuntu packages of
      5 # GNUnet, GNU Taler and GNU Anastasis.
      6 
      7 ARG DEBIAN_FRONTEND=noninteractive
      8 ENV AWS_LC_SYS_NO_JITTER_ENTROPY=1
      9 
     10 # Install dependencies
     11 RUN \
     12   apt-get update \
     13   && \
     14   apt-get -y full-upgrade \
     15   && \
     16   apt-get -y install \
     17     rustup \
     18     build-essential zip jq python3 python3-pip nodejs npm \
     19     autoconf automake libtool libltdl-dev libmicrohttpd-dev \
     20     libpq-dev libsqlite3-dev libunistring-dev libqrencode-dev libgcrypt-dev \
     21     libsodium-dev libargon2-dev libjansson-dev libgmp-dev texinfo pkgconf \
     22     zlib1g-dev libopus-dev libextractor-dev libnss3-dev libcurl4-gnutls-dev autopoint \
     23     libzbar-dev libmariadb-dev-compat libmariadb-dev mandoc libpulse-dev libgstreamer1.0-dev libbluetooth-dev iptables miniupnpc libpng-dev \
     24     python3-jinja2 doxygen libjose-dev iproute2 sudo \
     25     wget zile \
     26     libogg-dev gettext net-tools po-debconf debhelper-compat nginx \
     27     libgtk-3-dev libgladeui-dev libmagic-dev \
     28     dbconfig-no-thanks \
     29     devscripts equivs \
     30     python3-click python3-requests \
     31     meson \
     32     default-jdk-headless \
     33     golang \
     34     postgresql \
     35   && \
     36   pip install sphinx_rtd_theme --break-system-packages \
     37   && \
     38   npm install -g pnpm && \
     39   rustup default stable
     40