├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SPONSORS └── scripts └── apk-install /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mini-containers/base/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mini-containers/base/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mini-containers/base/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mini-containers/base/HEAD/README.md -------------------------------------------------------------------------------- /SPONSORS: -------------------------------------------------------------------------------- 1 | AREA 17 http://www.area17.com 2 | -------------------------------------------------------------------------------- /scripts/apk-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | apk add --no-cache "$@" 3 | --------------------------------------------------------------------------------