├── .circleci └── config.yml ├── .dockerignore ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTE.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── building-container.md ├── mozlog.md ├── serving-static-content.md └── version_object.md ├── package.json ├── server.js └── version.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/README.md -------------------------------------------------------------------------------- /docs/building-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/docs/building-container.md -------------------------------------------------------------------------------- /docs/mozlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/docs/mozlog.md -------------------------------------------------------------------------------- /docs/serving-static-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/docs/serving-static-content.md -------------------------------------------------------------------------------- /docs/version_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/docs/version_object.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/server.js -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-services/Dockerflow/HEAD/version.json --------------------------------------------------------------------------------