6 lines
247 B
Docker
6 lines
247 B
Docker
# -*- 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
|