├── .gitignore ├── Makefile ├── README.rst └── testing ├── Dockerfile ├── repositories └── setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | user.abuild/ 3 | target/ 4 | aports/ 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnephin/docker-apk-build/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnephin/docker-apk-build/HEAD/README.rst -------------------------------------------------------------------------------- /testing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnephin/docker-apk-build/HEAD/testing/Dockerfile -------------------------------------------------------------------------------- /testing/repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnephin/docker-apk-build/HEAD/testing/repositories -------------------------------------------------------------------------------- /testing/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnephin/docker-apk-build/HEAD/testing/setup.sh --------------------------------------------------------------------------------