build-godot-action/Dockerfile
Felix a064ca1e7f
fix macos builds (invalid export format)
- remove gh workflows as they were never executed in this fork
- removes "SubDirectoryLocation"
- expects your `export_path` to be `./build/...`
- remove test projects
- use `lf` eol
- remove contributors as this file wasn't up-to-date since forever
- remove some `Dockerfile` labels
2024-11-22 13:00:34 +01:00

11 lines
347 B
Docker

FROM barichello/godot-ci:latest
LABEL "com.github.actions.name"="Build Godot"
LABEL "com.github.actions.description"="Build a Godot project for multiple platforms"
LABEL "com.github.actions.icon"="loader"
LABEL "com.github.actions.color"="blue"
USER root
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]