├── .gitignore ├── 2.7 └── Dockerfile ├── 3.4 └── Dockerfile ├── 3.5 └── Dockerfile ├── Makefile ├── README.md ├── circle.yml └── tests ├── app ├── main.py ├── requirements.txt └── test.sh ├── buildfiles ├── expected ├── requirements.txt └── test.sh ├── onbuild ├── .onbuild ├── requirements.txt └── test.sh ├── runtests └── shunit2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/.gitignore -------------------------------------------------------------------------------- /2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/2.7/Dockerfile -------------------------------------------------------------------------------- /3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/3.4/Dockerfile -------------------------------------------------------------------------------- /3.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/3.5/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/circle.yml -------------------------------------------------------------------------------- /tests/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/app/main.py -------------------------------------------------------------------------------- /tests/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.10 -------------------------------------------------------------------------------- /tests/app/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/app/test.sh -------------------------------------------------------------------------------- /tests/buildfiles/expected: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .onbuild 3 | requirements.txt -------------------------------------------------------------------------------- /tests/buildfiles/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/buildfiles/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/buildfiles/test.sh -------------------------------------------------------------------------------- /tests/onbuild/.onbuild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | apk-install curl 4 | -------------------------------------------------------------------------------- /tests/onbuild/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/onbuild/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/onbuild/test.sh -------------------------------------------------------------------------------- /tests/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/runtests -------------------------------------------------------------------------------- /tests/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliderlabs/python-runtime/HEAD/tests/shunit2 --------------------------------------------------------------------------------