blob: b139c84d70e8ff82eb3ceab36fad26a8a4ee09df (
plain)
1
2
3
4
5
|
# -*- dockerfile -*-
FROM ubuntu:bionic
ARG DEBIAN_FRONTEND=noninteractive
# Need to install make, tzdata here to avoid stupid prompts when running package install via autobuild
RUN apt-get update --fix-missing -y && apt-get install -y make tzdata
|