├── .circleci └── config.yml ├── .gitignore ├── Makefile ├── README.md ├── img ├── env vars.jpg └── setup project.jpg └── scripts ├── generate.sh ├── setup.sh ├── tap-to-junit.sh └── tests.bats /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | config.yml.template -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/README.md -------------------------------------------------------------------------------- /img/env vars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/img/env vars.jpg -------------------------------------------------------------------------------- /img/setup project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/img/setup project.jpg -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/scripts/generate.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/tap-to-junit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/scripts/tap-to-junit.sh -------------------------------------------------------------------------------- /scripts/tests.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Archived/dockerfile-wizard/HEAD/scripts/tests.bats --------------------------------------------------------------------------------