mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
12 lines
355 B
Docker
12 lines
355 B
Docker
|
FROM debian:bullseye
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
RUN apt-get update && apt-get upgrade -y && \
|
||
|
apt-get install --no-install-recommends -y -q \
|
||
|
git-core vim-nox wget less nvi tmux lynx
|
||
|
RUN apt-get install -y -q \
|
||
|
scons cmake ninja-build
|
||
|
RUN apt-get install -y -q \
|
||
|
unzip curl openjdk-11-jdk-headless
|
||
|
RUN apt-get install -y -q \
|
||
|
python3-protobuf
|