forked from SuperTux/supertux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile for a toolbox dev environment
- Loading branch information
James De Ricco
committed
May 10, 2024
1 parent
11e68bc
commit be1c9c9
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Build a image for use with toolbox (https://containertoolbx.org/) | ||
# that supports building, running, and debugging supertux | ||
|
||
# GTK3 is installed to fix a segfault when starting supertux. | ||
# It or one of its dependencies fixes the crash. | ||
|
||
FROM --platform=amd64 registry.fedoraproject.org/fedora-toolbox:38 | ||
RUN sudo dnf -y install cmake gcc-c++ gdb SDL2{,-devel} libGLEW glew{,-devel} libogg{,-devel} freetype{,-devel} glm-devel zlib{,-devel} SDL2_image{,-devel} libvorbis{,-devel} libcurl{,-devel}.x86_64 openal{,-devel} gtk3 |