5 lines
132 B
Docker
5 lines
132 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get install -y build-essential cmake default-jdk-headless
|