├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── asgardio.Dockerfile ├── bionic.Dockerfile ├── dockerfiles └── centos │ └── Dockerfile ├── entrypoint.sh ├── focal.Dockerfile ├── issue_template.md ├── pull_request_template.md └── support.bionic.Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/README.md -------------------------------------------------------------------------------- /asgardio.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/asgardio.Dockerfile -------------------------------------------------------------------------------- /bionic.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/bionic.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/dockerfiles/centos/Dockerfile -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /focal.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/focal.Dockerfile -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /support.bionic.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/build-docker/HEAD/support.bionic.Dockerfile --------------------------------------------------------------------------------