From b4edb4d9dfd2310aa1fedfaab5cc2075996b792d Mon Sep 17 00:00:00 2001 From: deed Date: Sun, 30 Jan 2022 15:31:57 +0100 Subject: [PATCH] Add Dockerfile pour compiler Godot --- godot4-compil/Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 godot4-compil/Dockerfile diff --git a/godot4-compil/Dockerfile b/godot4-compil/Dockerfile new file mode 100644 index 0000000..86bbde0 --- /dev/null +++ b/godot4-compil/Dockerfile @@ -0,0 +1,21 @@ +FROM debian:buster +LABEL version="1.0" maintainer="Khaganat " + +USER root +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update && apt-get install -y --no-install-recommends \ + build-essential \ + scons \ + pkg-config \ + libx11-dev \ + libxcursor-dev \ + libxinerama-dev \ + libgl1-mesa-dev \ + libglu-dev \ + libasound2-dev \ + libpulse-dev \ + libudev-dev \ + libxi-dev \ + libxrandr-dev \ + && rm -rf /var/lib/apt/lists/* +