mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
11 lines
378 B
Docker
11 lines
378 B
Docker
|
FROM debian:buster-backports
|
||
|
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 \
|
||
|
build-essential clang llvm lld python3-pip
|
||
|
RUN apt-get install -y -q \
|
||
|
-t buster-backports cmake ninja-build
|
||
|
RUN python3 -m pip install scons meson
|