Add Dockerfile pour compiler Godot
This commit is contained in:
parent
b879306bdf
commit
b4edb4d9df
1 changed files with 21 additions and 0 deletions
21
godot4-compil/Dockerfile
Normal file
21
godot4-compil/Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
FROM debian:buster
|
||||||
|
LABEL version="1.0" maintainer="Khaganat <contact@khaganat.net>"
|
||||||
|
|
||||||
|
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/*
|
||||||
|
|
Loading…
Reference in a new issue