blob: f650856c9fb1f7bf95f4ae9bd0285bca66f33c8e (
plain)
1
2
3
4
5
|
# -*- dockerfile -*-
FROM ubuntu:focal
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
|