7 lines
194 B
Docker
7 lines
194 B
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y --no-install-recommends git build-essential cmake ninja-build python3 python3-pip default-jre
|