├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── ISSUE_TEMPLATE └── minor-version-bump.md ├── LICENSE ├── Makefile ├── PUBLISHING.md ├── README.md ├── contrib └── etc │ └── install_node.sh ├── hooks ├── build └── post_push ├── imagestreams ├── nodejs-centos7.json └── nodejs-rhel7.json ├── s2i ├── assemble ├── env ├── generate-container-user ├── run ├── save-artifacts └── usage ├── templates └── nodejs-rest-http.json ├── test ├── make-plus-booster-test.sh ├── run.sh └── test-app │ ├── README.md │ ├── addon │ ├── binding.gyp │ └── hello.cc │ ├── greeting.ts │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── server.js │ └── tsconfig.json └── versions.mk /.gitignore: -------------------------------------------------------------------------------- 1 | greeting.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/Dockerfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/minor-version-bump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/ISSUE_TEMPLATE/minor-version-bump.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/Makefile -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /contrib/etc/install_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/contrib/etc/install_node.sh -------------------------------------------------------------------------------- /hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/hooks/build -------------------------------------------------------------------------------- /hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/hooks/post_push -------------------------------------------------------------------------------- /imagestreams/nodejs-centos7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/imagestreams/nodejs-centos7.json -------------------------------------------------------------------------------- /imagestreams/nodejs-rhel7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/imagestreams/nodejs-rhel7.json -------------------------------------------------------------------------------- /s2i/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/assemble -------------------------------------------------------------------------------- /s2i/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/env -------------------------------------------------------------------------------- /s2i/generate-container-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/generate-container-user -------------------------------------------------------------------------------- /s2i/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/run -------------------------------------------------------------------------------- /s2i/save-artifacts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/save-artifacts -------------------------------------------------------------------------------- /s2i/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/s2i/usage -------------------------------------------------------------------------------- /templates/nodejs-rest-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/templates/nodejs-rest-http.json -------------------------------------------------------------------------------- /test/make-plus-booster-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/make-plus-booster-test.sh -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/README.md -------------------------------------------------------------------------------- /test/test-app/addon/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/addon/binding.gyp -------------------------------------------------------------------------------- /test/test-app/addon/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/addon/hello.cc -------------------------------------------------------------------------------- /test/test-app/greeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/greeting.ts -------------------------------------------------------------------------------- /test/test-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/package-lock.json -------------------------------------------------------------------------------- /test/test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/package.json -------------------------------------------------------------------------------- /test/test-app/public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/server.js -------------------------------------------------------------------------------- /test/test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/test/test-app/tsconfig.json -------------------------------------------------------------------------------- /versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeshift-archived/centos7-s2i-nodejs/HEAD/versions.mk --------------------------------------------------------------------------------