riscv64.Containerfile (553B)
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 git \ 10 golang 11 12 # Debian packaging tools 13 RUN apt-get install -yqq \ 14 po-debconf \ 15 build-essential \ 16 debhelper-compat \ 17 devscripts \ 18 git-buildpackage \ 19 && rm -rf /var/lib/apt/lists/* 20 21 WORKDIR /workdir 22 23 CMD ["/bin/bash"]