├── .dockerignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── package.json └── tests ├── samples └── sample.bats └── test-bats-dockerimage.bats /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Force checkout as Unix endline style 2 | text eol=lf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/package.json -------------------------------------------------------------------------------- /tests/samples/sample.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/tests/samples/sample.bats -------------------------------------------------------------------------------- /tests/test-bats-dockerimage.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dduportal-dockerfiles/bats/HEAD/tests/test-bats-dockerimage.bats --------------------------------------------------------------------------------