taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

Containerfile (626B)


      1 FROM docker.io/library/debian:trixie
      2 
      3 ENV DEBIAN_FRONTEND=noninteractive
      4     
      5     # Apt sync
      6 RUN apt-get update -yq && \
      7     apt-get upgrade -yq && \
      8     # Install build & test dependencies
      9     apt-get install -yq \
     10                    rustup \
     11                    git \
     12                    python3 \
     13                    sudo \
     14                    man \
     15                    make \
     16                    postgresql \
     17                    debhelper \
     18                    build-essential \
     19                    git-buildpackage && \
     20     # Install rustup toolchain
     21     rustup default stable
     22 
     23 WORKDIR /workdir
     24 
     25 CMD ["bash", "/workdir/ci/ci.sh"]