blob: a2ad6bb2e7b2c66217fee58f14243649273e206d (
plain)
1
2
3
4
5
6
|
# -*- dockerfile -*-
# Debian 10 is known as buster
FROM debian:10
ARG DEBIAN_FRONTEND=noninteractive
# Need to install make, tzdata here to avoid stupid prompts when running package install via autobuild
RUN apt-get update -y && apt-get install -y make tzdata
|