├── .gitignore ├── Dockerfile ├── README.md ├── circle.yml └── test ├── node-sass └── package.json ├── runTests.sh └── ssh └── id_rsa /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergej-brazdeikis/docker-node/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergej-brazdeikis/docker-node/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergej-brazdeikis/docker-node/HEAD/circle.yml -------------------------------------------------------------------------------- /test/node-sass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergej-brazdeikis/docker-node/HEAD/test/node-sass/package.json -------------------------------------------------------------------------------- /test/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergej-brazdeikis/docker-node/HEAD/test/runTests.sh -------------------------------------------------------------------------------- /test/ssh/id_rsa: -------------------------------------------------------------------------------- 1 | FOO_BAR 2 | --------------------------------------------------------------------------------