Containerfile (360B)
1 FROM docker.io/library/debian:trixie 2 3 ENV DEBIAN_FRONTEND=noninteractive 4 5 RUN apt-get update -yqq && \ 6 apt-get install -yqq \ 7 rustup \ 8 python3 \ 9 python3-lxml \ 10 jq \ 11 po-debconf \ 12 build-essential \ 13 debhelper && \ 14 rustup default stable 15 16 WORKDIR /workdir 17 18 CMD ["bash", "/workdir/ci/ci.sh"]