Containerfile (531B)
1 FROM docker.io/library/debian:trixie 2 3 ENV DEBIAN_FRONTEND=noninteractive 4 5 RUN apt-get update -yqq 6 RUN apt-get upgrade -yqq 7 RUN apt-get install -yqq \ 8 python3 \ 9 git \ 10 postgresql \ 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"]