debian-10.Dockerfile.in (261B)
1 # -*- dockerfile -*- 2 # Debian 10 is known as buster 3 FROM debian:10 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