Files
godot-builder-image/Dockerfile
Olof Pettersson 1b1355e782
All checks were successful
Publish Builder Image / build-and-push (push) Successful in 3m12s
Add hidapi
2025-12-01 22:04:12 +01:00

32 lines
686 B
Docker

# We use Fedora because it has the most up-to-date MinGW packages for Godot 4
FROM fedora:39
# Install Build Tools (GCC, MinGW, SCons, Yasm, Git)
# This covers Linux (GCC) and Windows (MinGW) compilation
RUN dnf -y install \
git \
scons \
make \
automake \
gcc \
gcc-c++ \
kernel-headers \
libX11-devel \
libXcursor-devel \
libXrandr-devel \
libXinerama-devel \
libXi-devel \
mesa-libGL-devel \
alsa-lib-devel \
pulseaudio-libs-devel \
libudev-devel \
mingw64-gcc \
mingw64-gcc-c++ \
mingw64-winpthreads-static \
mingw64-hidapi \
yasm \
which \
nodejs \
&& dnf clean all
CMD ["/bin/bash"]