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