Tom Willemse
3ef60b7cf7
When not using the noninteractive front-end the installation blocks to ask which timezone to use.
7 lines
254 B
Docker
7 lines
254 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive \
|
|
&& ln -fs /usr/share/zoneinfo/America/Vancouver /etc/localtime \
|
|
&& apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get install -y build-essential cmake default-jdk-headless
|