Docker image to build projects
This Docker image contains everything you need to run Godot Engine inside a container. It includes Godot and it's corresponding export templates. It may come in handy when setting up a CI or Godot server.
https://hub.docker.com/r/flashlight13/godot/tags
There're two primary usecases for this image:
- Use it as a part of game CI pipeline
- Run it directly to start godot
In any case, the first thing you have to do is to have Docker up and running.
- Make sure you're running it as a
root
user. - In your container:
FROM flashlight13/godot:<version> AS base
...
RUN godot ...
docker pull flashlight13/godot:<version>
docker run flashlight13/godot:<version>