taler-rust

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

Containerfile (588B)


      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     # Install rustup toolchain
     20     rustup default stable
     21 
     22 WORKDIR /workdir
     23 
     24 CMD ["bash", "/workdir/ci/ci.sh"]