├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md └── assets └── setup └── install /.gitignore: -------------------------------------------------------------------------------- 1 | *.bz2 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-runner-gitlab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-runner-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-runner-gitlab/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-runner-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /assets/setup/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-runner-gitlab/HEAD/assets/setup/install --------------------------------------------------------------------------------