debian-11.Dockerfile.in (263B)
1 # -*- dockerfile -*- 2 # Debian 11 is known as bullseye 3 FROM debian:11 4 ARG DEBIAN_FRONTEND=noninteractive 5 # Need to install make, tzdata here to avoid stupid prompts when running package install via autobuild 6 RUN apt-get update -y && apt-get install -y make tzdata