https://github.com/openrct2/openrct2-docker-build
This repository contains dockerfiles for images used to build OpenRCT2 on Travis CI
https://github.com/openrct2/openrct2-docker-build
Last synced: 10 months ago
JSON representation
This repository contains dockerfiles for images used to build OpenRCT2 on Travis CI
- Host: GitHub
- URL: https://github.com/openrct2/openrct2-docker-build
- Owner: OpenRCT2
- License: mit
- Created: 2019-07-01T21:08:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-01-20T10:55:02.000Z (over 1 year ago)
- Last Synced: 2025-02-15T20:18:17.317Z (over 1 year ago)
- Language: Dockerfile
- Size: 73.2 KB
- Stars: 3
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# openrct2-docker-build
This repository contains dockerfiles for images used to build OpenRCT2 on GitHub Actions. They can also be used for OpenRCT2 development.
To use these images for development, first checkout the sources for OpenRCT2 and then run an interactive container with a mounted directory to your OpenRCT2 checkout. Once the container shell has launched, you can build it using cmake and ninja.
Example:
```
$ git checkout https://github.com/OpenRCT2/OpenRCT2.git /tmp/openrct2-src
$ docker run --rm -w /w -v /tmp/openrct2-src:/w -it openrct2/openrct2-build
$ mkdir -p bin && cd bin
$ cmake .. -G Ninja
$ ninja
$ ./openrct2 --version
```
## Tags
Distributed builds of OpenRCT2 for Linux are currently built by Ubuntu 18.04.
- [`latest`, `0.3.1`, `0.3.1-bionic` (*0.3.1/bionic/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.1/bionic/Dockerfile)
- [`0.3.1-bionic32` (*0.3.1/bionic32/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.1/bionic32/Dockerfile)
- [`0.3.1-format` (*0.3.1/format/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.1/format/Dockerfile)
- [`0.3.1-mingw` (*0.3.1/mingw/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.1/mingw/Dockerfile)
- [`0.3.0`, `0.3.0-bionic` (*0.3.0/bionic/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.0/bionic/Dockerfile)
- [`0.3.0-bionic32` (*0.3.0/bionic32/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.0/bionic32/Dockerfile)
- [`0.3.0-format` (*0.3.0/format/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.0/format/Dockerfile)
- [`0.3.0-mingw` (*0.3.0/mingw/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.3.0/mingw/Dockerfile)
- [`0.2.4`, `0.2.4-bionic` (*0.2.4/bionic/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.2.4/bionic/Dockerfile)
- [`0.2.4-bionic32` (*0.2.4/bionic32/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.2.4/bionic32/Dockerfile)
- [`0.2.4-format` (*0.2.4/format/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.2.4/format/Dockerfile)
- [`0.2.4-mingw` (*0.2.4/mingw/Dockerfile*)](https://github.com/OpenRCT2/openrct2-docker-build/blob/master/0.2.4/mingw/Dockerfile)