riscv64.Containerfile (567B)
1 # This file is separate as trixie does not offer a stable riscv on docker yet. 2 FROM docker.io/library/debian:unstable 3 4 ENV DEBIAN_FRONTEND=noninteractive 5 6 RUN apt-get update -yqq && \ 7 apt-get upgrade -yqq && \ 8 apt-get install -yqq \ 9 python3 \ 10 git \ 11 golang 12 13 # Debian packaging tools 14 RUN apt-get install -yqq \ 15 po-debconf \ 16 build-essential \ 17 debhelper-compat \ 18 devscripts \ 19 git-buildpackage \ 20 && rm -rf /var/lib/apt/lists/* 21 22 WORKDIR /workdir 23 24 CMD ["/bin/bash"]