├── .gitignore ├── .ruby-version ├── .tool-versions ├── Gemfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── Rakefile ├── appliances ├── README.md ├── aws │ └── Dockerfile ├── debugging │ ├── README.md │ ├── bionic │ │ └── Dockerfile │ ├── focal │ │ └── Dockerfile │ └── template │ │ └── Dockerfile ├── dynamo-local-admin │ ├── Dockerfile │ ├── README.md │ ├── nginx-proxy.conf │ └── supervisord.conf ├── dynamo │ ├── Dockerfile │ ├── README.md │ └── entrypoint.sh ├── elasticmq-integration │ ├── Dockerfile │ └── elasticmq.conf ├── elasticmq │ ├── Dockerfile │ └── elasticmq.conf ├── elmerglue │ ├── Dockerfile │ └── README.md ├── fake-s3 │ ├── Dockerfile │ ├── README.md │ └── entrypoint.sh ├── fake-sqs │ └── Dockerfile ├── gergich │ └── Dockerfile ├── gpg-signer │ ├── Dockerfile │ ├── README.md │ └── entrypoint.sh ├── kinesalite │ ├── Dockerfile │ └── README.md ├── kinesis2sqs │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── entrypoint.rb ├── libreoffice │ ├── 24.8 │ │ └── Dockerfile │ ├── 6.2 │ │ └── Dockerfile │ ├── 6.3 │ │ └── Dockerfile │ └── template │ │ └── Dockerfile ├── mailcatcher │ ├── Dockerfile │ └── README.md ├── opensearch │ ├── 1.3.2 │ │ └── Dockerfile │ ├── README.md │ └── template │ │ └── Dockerfile ├── sonar-cli │ ├── Dockerfile │ └── README.md ├── tx │ ├── Dockerfile │ └── README.md └── zeppelin │ └── Dockerfile ├── auto-update.py ├── ci ├── Dockerfile ├── docker-manifest.sh └── get-cache-layers.sh ├── core ├── README.md ├── bionic-slim │ └── Dockerfile ├── bionic │ └── Dockerfile ├── focal │ └── Dockerfile ├── jammy │ └── Dockerfile ├── noble │ └── Dockerfile └── template │ └── Dockerfile ├── corretto ├── 17 │ └── Dockerfile ├── 20 │ └── Dockerfile ├── 21 │ └── Dockerfile ├── 22 │ └── Dockerfile ├── 24 │ └── Dockerfile ├── 25 │ └── Dockerfile └── template │ └── Dockerfile ├── golang ├── 1.21 │ └── Dockerfile ├── 1.22 │ └── Dockerfile ├── 1.23 │ └── Dockerfile ├── 1.24 │ └── Dockerfile ├── README.md └── template │ └── Dockerfile ├── java ├── 11 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 18 │ └── Dockerfile ├── 19 │ └── Dockerfile ├── 11-jre │ └── Dockerfile ├── 16-jre │ └── Dockerfile ├── 17-focal │ └── Dockerfile ├── 17-jre-focal │ └── Dockerfile ├── 17-jre │ └── Dockerfile ├── 18-jre │ └── Dockerfile ├── 19-jre │ └── Dockerfile ├── README.md └── template │ └── Dockerfile ├── k8s-ci ├── README.md ├── main │ ├── Dockerfile │ └── bin │ │ └── kustomize-lint └── template │ ├── Dockerfile │ └── bin │ └── kustomize-lint ├── k8s-toolbox ├── 1.25 │ └── Dockerfile ├── 1.26 │ └── Dockerfile └── template │ └── Dockerfile ├── lib ├── generation_message.rb └── template.rb ├── manifest.yml ├── node-passenger ├── 14 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 16 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 18 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 20 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 22 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── README.md └── template │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ └── env.conf.erb │ └── nginx.conf.erb ├── node-pm2-libvips ├── 20 │ └── Dockerfile ├── 22 │ └── Dockerfile ├── README.md └── template │ └── Dockerfile ├── node-pm2 ├── 18 │ ├── Dockerfile │ ├── conf.d │ │ └── proxy.conf.erb │ ├── default.config.json │ ├── entrypoint │ ├── nginx.conf.erb │ └── supervisord │ │ └── supervisord.conf ├── 20 │ ├── Dockerfile │ ├── conf.d │ │ └── proxy.conf.erb │ ├── default.config.json │ ├── entrypoint │ ├── nginx.conf.erb │ └── supervisord │ │ └── supervisord.conf ├── 22 │ ├── Dockerfile │ ├── conf.d │ │ └── proxy.conf.erb │ ├── default.config.json │ ├── entrypoint │ ├── nginx.conf.erb │ └── supervisord │ │ └── supervisord.conf ├── README.md └── template │ ├── Dockerfile │ ├── conf.d │ └── proxy.conf.erb │ ├── default.config.json │ ├── entrypoint │ ├── nginx.conf.erb │ └── supervisord │ └── supervisord.conf ├── node ├── 14 │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── 16 │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── 18 │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── 20 │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── 22 │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── README.md └── template │ ├── Dockerfile │ ├── npm-private │ └── yarn-private ├── php-nginx ├── README.md └── template │ ├── Dockerfile │ ├── entrypoint.d │ ├── 10-configure-fpm.py │ ├── 20-configure-nginx.py │ ├── 30-configure-datadog.py │ └── nginx.conf │ └── supervisor │ └── supervisord.conf ├── php ├── 7.4 │ ├── Dockerfile │ └── entrypoint.sh ├── README.md └── template │ ├── Dockerfile │ └── entrypoint.sh ├── python ├── 3.10 │ ├── Dockerfile │ ├── pip-private │ └── pipenv-private ├── 3.13 │ ├── Dockerfile │ ├── pip-private │ └── pipenv-private ├── 3.7 │ ├── Dockerfile │ ├── pip-private │ └── pipenv-private ├── README.md └── template │ ├── Dockerfile │ ├── pip-private │ └── pipenv-private ├── rover ├── template │ └── Dockerfile └── v0.4.8 │ └── Dockerfile ├── ruby-passenger ├── 2.7 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.0 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.1-jammy │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.1 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.2-jammy │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.2 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.3-jammy │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.3 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.4-jammy │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── 3.4 │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ │ └── env.conf.erb │ └── nginx.conf.erb ├── README.md └── template │ ├── Dockerfile │ ├── entrypoint │ ├── main.d │ └── env.conf.erb │ └── nginx.conf.erb ├── ruby ├── 2.7-jammy │ └── Dockerfile ├── 2.7 │ └── Dockerfile ├── 3.0-jammy │ └── Dockerfile ├── 3.0 │ └── Dockerfile ├── 3.1-jammy │ └── Dockerfile ├── 3.1 │ └── Dockerfile ├── 3.2-jammy │ └── Dockerfile ├── 3.2 │ └── Dockerfile ├── 3.3-jammy │ └── Dockerfile ├── 3.3 │ └── Dockerfile ├── 3.4-jammy │ └── Dockerfile ├── 3.4 │ └── Dockerfile ├── README.md └── template │ └── Dockerfile ├── rvm └── Dockerfile ├── scala-sbt ├── 1.5 │ ├── Dockerfile │ └── sbt-private ├── README.md └── template │ ├── Dockerfile │ └── sbt-private ├── templates ├── node_install.Dockerfile └── yarn_install.Dockerfile ├── tini ├── README.md ├── template │ └── Dockerfile ├── v0.16.1 │ └── Dockerfile ├── v0.18.0 │ └── Dockerfile └── v0.19.0 │ └── Dockerfile └── yq ├── 4.44.1 └── Dockerfile └── template └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.1.4 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rake' 4 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/Rakefile -------------------------------------------------------------------------------- /appliances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/README.md -------------------------------------------------------------------------------- /appliances/aws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/aws/Dockerfile -------------------------------------------------------------------------------- /appliances/debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/debugging/README.md -------------------------------------------------------------------------------- /appliances/debugging/bionic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/debugging/bionic/Dockerfile -------------------------------------------------------------------------------- /appliances/debugging/focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/debugging/focal/Dockerfile -------------------------------------------------------------------------------- /appliances/debugging/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/debugging/template/Dockerfile -------------------------------------------------------------------------------- /appliances/dynamo-local-admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo-local-admin/Dockerfile -------------------------------------------------------------------------------- /appliances/dynamo-local-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo-local-admin/README.md -------------------------------------------------------------------------------- /appliances/dynamo-local-admin/nginx-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo-local-admin/nginx-proxy.conf -------------------------------------------------------------------------------- /appliances/dynamo-local-admin/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo-local-admin/supervisord.conf -------------------------------------------------------------------------------- /appliances/dynamo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo/Dockerfile -------------------------------------------------------------------------------- /appliances/dynamo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo/README.md -------------------------------------------------------------------------------- /appliances/dynamo/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/dynamo/entrypoint.sh -------------------------------------------------------------------------------- /appliances/elasticmq-integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elasticmq-integration/Dockerfile -------------------------------------------------------------------------------- /appliances/elasticmq-integration/elasticmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elasticmq-integration/elasticmq.conf -------------------------------------------------------------------------------- /appliances/elasticmq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elasticmq/Dockerfile -------------------------------------------------------------------------------- /appliances/elasticmq/elasticmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elasticmq/elasticmq.conf -------------------------------------------------------------------------------- /appliances/elmerglue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elmerglue/Dockerfile -------------------------------------------------------------------------------- /appliances/elmerglue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/elmerglue/README.md -------------------------------------------------------------------------------- /appliances/fake-s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/fake-s3/Dockerfile -------------------------------------------------------------------------------- /appliances/fake-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/fake-s3/README.md -------------------------------------------------------------------------------- /appliances/fake-s3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/fake-s3/entrypoint.sh -------------------------------------------------------------------------------- /appliances/fake-sqs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/fake-sqs/Dockerfile -------------------------------------------------------------------------------- /appliances/gergich/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/gergich/Dockerfile -------------------------------------------------------------------------------- /appliances/gpg-signer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/gpg-signer/Dockerfile -------------------------------------------------------------------------------- /appliances/gpg-signer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/gpg-signer/README.md -------------------------------------------------------------------------------- /appliances/gpg-signer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/gpg-signer/entrypoint.sh -------------------------------------------------------------------------------- /appliances/kinesalite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesalite/Dockerfile -------------------------------------------------------------------------------- /appliances/kinesalite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesalite/README.md -------------------------------------------------------------------------------- /appliances/kinesis2sqs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesis2sqs/Dockerfile -------------------------------------------------------------------------------- /appliances/kinesis2sqs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesis2sqs/Gemfile -------------------------------------------------------------------------------- /appliances/kinesis2sqs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesis2sqs/Gemfile.lock -------------------------------------------------------------------------------- /appliances/kinesis2sqs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesis2sqs/README.md -------------------------------------------------------------------------------- /appliances/kinesis2sqs/entrypoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/kinesis2sqs/entrypoint.rb -------------------------------------------------------------------------------- /appliances/libreoffice/24.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/libreoffice/24.8/Dockerfile -------------------------------------------------------------------------------- /appliances/libreoffice/6.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/libreoffice/6.2/Dockerfile -------------------------------------------------------------------------------- /appliances/libreoffice/6.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/libreoffice/6.3/Dockerfile -------------------------------------------------------------------------------- /appliances/libreoffice/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/libreoffice/template/Dockerfile -------------------------------------------------------------------------------- /appliances/mailcatcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/mailcatcher/Dockerfile -------------------------------------------------------------------------------- /appliances/mailcatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/mailcatcher/README.md -------------------------------------------------------------------------------- /appliances/opensearch/1.3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/opensearch/1.3.2/Dockerfile -------------------------------------------------------------------------------- /appliances/opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/opensearch/README.md -------------------------------------------------------------------------------- /appliances/opensearch/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/opensearch/template/Dockerfile -------------------------------------------------------------------------------- /appliances/sonar-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/sonar-cli/Dockerfile -------------------------------------------------------------------------------- /appliances/sonar-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/sonar-cli/README.md -------------------------------------------------------------------------------- /appliances/tx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/tx/Dockerfile -------------------------------------------------------------------------------- /appliances/tx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/tx/README.md -------------------------------------------------------------------------------- /appliances/zeppelin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/appliances/zeppelin/Dockerfile -------------------------------------------------------------------------------- /auto-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/auto-update.py -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /ci/docker-manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ci/docker-manifest.sh -------------------------------------------------------------------------------- /ci/get-cache-layers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ci/get-cache-layers.sh -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/README.md -------------------------------------------------------------------------------- /core/bionic-slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/bionic-slim/Dockerfile -------------------------------------------------------------------------------- /core/bionic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/bionic/Dockerfile -------------------------------------------------------------------------------- /core/focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/focal/Dockerfile -------------------------------------------------------------------------------- /core/jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/jammy/Dockerfile -------------------------------------------------------------------------------- /core/noble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/noble/Dockerfile -------------------------------------------------------------------------------- /core/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/core/template/Dockerfile -------------------------------------------------------------------------------- /corretto/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/17/Dockerfile -------------------------------------------------------------------------------- /corretto/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/20/Dockerfile -------------------------------------------------------------------------------- /corretto/21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/21/Dockerfile -------------------------------------------------------------------------------- /corretto/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/22/Dockerfile -------------------------------------------------------------------------------- /corretto/24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/24/Dockerfile -------------------------------------------------------------------------------- /corretto/25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/25/Dockerfile -------------------------------------------------------------------------------- /corretto/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/corretto/template/Dockerfile -------------------------------------------------------------------------------- /golang/1.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/1.21/Dockerfile -------------------------------------------------------------------------------- /golang/1.22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/1.22/Dockerfile -------------------------------------------------------------------------------- /golang/1.23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/1.23/Dockerfile -------------------------------------------------------------------------------- /golang/1.24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/1.24/Dockerfile -------------------------------------------------------------------------------- /golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/README.md -------------------------------------------------------------------------------- /golang/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/golang/template/Dockerfile -------------------------------------------------------------------------------- /java/11-jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/11-jre/Dockerfile -------------------------------------------------------------------------------- /java/11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/11/Dockerfile -------------------------------------------------------------------------------- /java/16-jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/16-jre/Dockerfile -------------------------------------------------------------------------------- /java/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/16/Dockerfile -------------------------------------------------------------------------------- /java/17-focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/17-focal/Dockerfile -------------------------------------------------------------------------------- /java/17-jre-focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/17-jre-focal/Dockerfile -------------------------------------------------------------------------------- /java/17-jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/17-jre/Dockerfile -------------------------------------------------------------------------------- /java/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/17/Dockerfile -------------------------------------------------------------------------------- /java/18-jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/18-jre/Dockerfile -------------------------------------------------------------------------------- /java/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/18/Dockerfile -------------------------------------------------------------------------------- /java/19-jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/19-jre/Dockerfile -------------------------------------------------------------------------------- /java/19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/19/Dockerfile -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/README.md -------------------------------------------------------------------------------- /java/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/java/template/Dockerfile -------------------------------------------------------------------------------- /k8s-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-ci/README.md -------------------------------------------------------------------------------- /k8s-ci/main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-ci/main/Dockerfile -------------------------------------------------------------------------------- /k8s-ci/main/bin/kustomize-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-ci/main/bin/kustomize-lint -------------------------------------------------------------------------------- /k8s-ci/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-ci/template/Dockerfile -------------------------------------------------------------------------------- /k8s-ci/template/bin/kustomize-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-ci/template/bin/kustomize-lint -------------------------------------------------------------------------------- /k8s-toolbox/1.25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-toolbox/1.25/Dockerfile -------------------------------------------------------------------------------- /k8s-toolbox/1.26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-toolbox/1.26/Dockerfile -------------------------------------------------------------------------------- /k8s-toolbox/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/k8s-toolbox/template/Dockerfile -------------------------------------------------------------------------------- /lib/generation_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/lib/generation_message.rb -------------------------------------------------------------------------------- /lib/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/lib/template.rb -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/manifest.yml -------------------------------------------------------------------------------- /node-passenger/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/14/Dockerfile -------------------------------------------------------------------------------- /node-passenger/14/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/14/entrypoint -------------------------------------------------------------------------------- /node-passenger/14/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/14/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/14/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/14/nginx.conf.erb -------------------------------------------------------------------------------- /node-passenger/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/16/Dockerfile -------------------------------------------------------------------------------- /node-passenger/16/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/16/entrypoint -------------------------------------------------------------------------------- /node-passenger/16/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/16/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/16/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/16/nginx.conf.erb -------------------------------------------------------------------------------- /node-passenger/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/18/Dockerfile -------------------------------------------------------------------------------- /node-passenger/18/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/18/entrypoint -------------------------------------------------------------------------------- /node-passenger/18/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/18/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/18/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/18/nginx.conf.erb -------------------------------------------------------------------------------- /node-passenger/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/20/Dockerfile -------------------------------------------------------------------------------- /node-passenger/20/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/20/entrypoint -------------------------------------------------------------------------------- /node-passenger/20/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/20/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/20/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/20/nginx.conf.erb -------------------------------------------------------------------------------- /node-passenger/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/22/Dockerfile -------------------------------------------------------------------------------- /node-passenger/22/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/22/entrypoint -------------------------------------------------------------------------------- /node-passenger/22/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/22/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/22/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/22/nginx.conf.erb -------------------------------------------------------------------------------- /node-passenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/README.md -------------------------------------------------------------------------------- /node-passenger/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/template/Dockerfile -------------------------------------------------------------------------------- /node-passenger/template/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/template/entrypoint -------------------------------------------------------------------------------- /node-passenger/template/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/template/main.d/env.conf.erb -------------------------------------------------------------------------------- /node-passenger/template/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-passenger/template/nginx.conf.erb -------------------------------------------------------------------------------- /node-pm2-libvips/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2-libvips/20/Dockerfile -------------------------------------------------------------------------------- /node-pm2-libvips/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2-libvips/22/Dockerfile -------------------------------------------------------------------------------- /node-pm2-libvips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2-libvips/README.md -------------------------------------------------------------------------------- /node-pm2-libvips/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2-libvips/template/Dockerfile -------------------------------------------------------------------------------- /node-pm2/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/Dockerfile -------------------------------------------------------------------------------- /node-pm2/18/conf.d/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/conf.d/proxy.conf.erb -------------------------------------------------------------------------------- /node-pm2/18/default.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/default.config.json -------------------------------------------------------------------------------- /node-pm2/18/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/entrypoint -------------------------------------------------------------------------------- /node-pm2/18/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/nginx.conf.erb -------------------------------------------------------------------------------- /node-pm2/18/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/18/supervisord/supervisord.conf -------------------------------------------------------------------------------- /node-pm2/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/Dockerfile -------------------------------------------------------------------------------- /node-pm2/20/conf.d/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/conf.d/proxy.conf.erb -------------------------------------------------------------------------------- /node-pm2/20/default.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/default.config.json -------------------------------------------------------------------------------- /node-pm2/20/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/entrypoint -------------------------------------------------------------------------------- /node-pm2/20/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/nginx.conf.erb -------------------------------------------------------------------------------- /node-pm2/20/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/20/supervisord/supervisord.conf -------------------------------------------------------------------------------- /node-pm2/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/Dockerfile -------------------------------------------------------------------------------- /node-pm2/22/conf.d/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/conf.d/proxy.conf.erb -------------------------------------------------------------------------------- /node-pm2/22/default.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/default.config.json -------------------------------------------------------------------------------- /node-pm2/22/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/entrypoint -------------------------------------------------------------------------------- /node-pm2/22/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/nginx.conf.erb -------------------------------------------------------------------------------- /node-pm2/22/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/22/supervisord/supervisord.conf -------------------------------------------------------------------------------- /node-pm2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/README.md -------------------------------------------------------------------------------- /node-pm2/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/Dockerfile -------------------------------------------------------------------------------- /node-pm2/template/conf.d/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/conf.d/proxy.conf.erb -------------------------------------------------------------------------------- /node-pm2/template/default.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/default.config.json -------------------------------------------------------------------------------- /node-pm2/template/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/entrypoint -------------------------------------------------------------------------------- /node-pm2/template/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/nginx.conf.erb -------------------------------------------------------------------------------- /node-pm2/template/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node-pm2/template/supervisord/supervisord.conf -------------------------------------------------------------------------------- /node/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/14/Dockerfile -------------------------------------------------------------------------------- /node/14/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/14/npm-private -------------------------------------------------------------------------------- /node/14/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/14/yarn-private -------------------------------------------------------------------------------- /node/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/16/Dockerfile -------------------------------------------------------------------------------- /node/16/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/16/npm-private -------------------------------------------------------------------------------- /node/16/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/16/yarn-private -------------------------------------------------------------------------------- /node/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/18/Dockerfile -------------------------------------------------------------------------------- /node/18/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/18/npm-private -------------------------------------------------------------------------------- /node/18/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/18/yarn-private -------------------------------------------------------------------------------- /node/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/20/Dockerfile -------------------------------------------------------------------------------- /node/20/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/20/npm-private -------------------------------------------------------------------------------- /node/20/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/20/yarn-private -------------------------------------------------------------------------------- /node/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/22/Dockerfile -------------------------------------------------------------------------------- /node/22/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/22/npm-private -------------------------------------------------------------------------------- /node/22/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/22/yarn-private -------------------------------------------------------------------------------- /node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/README.md -------------------------------------------------------------------------------- /node/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/template/Dockerfile -------------------------------------------------------------------------------- /node/template/npm-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/template/npm-private -------------------------------------------------------------------------------- /node/template/yarn-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/node/template/yarn-private -------------------------------------------------------------------------------- /php-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/README.md -------------------------------------------------------------------------------- /php-nginx/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/Dockerfile -------------------------------------------------------------------------------- /php-nginx/template/entrypoint.d/10-configure-fpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/entrypoint.d/10-configure-fpm.py -------------------------------------------------------------------------------- /php-nginx/template/entrypoint.d/20-configure-nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/entrypoint.d/20-configure-nginx.py -------------------------------------------------------------------------------- /php-nginx/template/entrypoint.d/30-configure-datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/entrypoint.d/30-configure-datadog.py -------------------------------------------------------------------------------- /php-nginx/template/entrypoint.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/entrypoint.d/nginx.conf -------------------------------------------------------------------------------- /php-nginx/template/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php-nginx/template/supervisor/supervisord.conf -------------------------------------------------------------------------------- /php/7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php/7.4/Dockerfile -------------------------------------------------------------------------------- /php/7.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php/7.4/entrypoint.sh -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php/README.md -------------------------------------------------------------------------------- /php/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php/template/Dockerfile -------------------------------------------------------------------------------- /php/template/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/php/template/entrypoint.sh -------------------------------------------------------------------------------- /python/3.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.10/Dockerfile -------------------------------------------------------------------------------- /python/3.10/pip-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.10/pip-private -------------------------------------------------------------------------------- /python/3.10/pipenv-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.10/pipenv-private -------------------------------------------------------------------------------- /python/3.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.13/Dockerfile -------------------------------------------------------------------------------- /python/3.13/pip-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.13/pip-private -------------------------------------------------------------------------------- /python/3.13/pipenv-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.13/pipenv-private -------------------------------------------------------------------------------- /python/3.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.7/Dockerfile -------------------------------------------------------------------------------- /python/3.7/pip-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.7/pip-private -------------------------------------------------------------------------------- /python/3.7/pipenv-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/3.7/pipenv-private -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/README.md -------------------------------------------------------------------------------- /python/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/template/Dockerfile -------------------------------------------------------------------------------- /python/template/pip-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/template/pip-private -------------------------------------------------------------------------------- /python/template/pipenv-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/python/template/pipenv-private -------------------------------------------------------------------------------- /rover/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/rover/template/Dockerfile -------------------------------------------------------------------------------- /rover/v0.4.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/rover/v0.4.8/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/2.7/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/2.7/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/2.7/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/2.7/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/2.7/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/2.7/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/2.7/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.0/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.0/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.0/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.0/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.0/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.0/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.0/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.1-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.1-jammy/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1-jammy/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.1-jammy/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1-jammy/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.1-jammy/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1-jammy/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.1/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.1/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.1/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.1/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.2-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.2-jammy/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2-jammy/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.2-jammy/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2-jammy/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.2-jammy/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2-jammy/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.2/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.2/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.2/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.2/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.3-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.3-jammy/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3-jammy/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.3-jammy/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3-jammy/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.3-jammy/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3-jammy/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.3/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.3/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.3/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.3/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.4-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.4-jammy/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4-jammy/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.4-jammy/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4-jammy/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.4-jammy/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4-jammy/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/3.4/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/3.4/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/3.4/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/3.4/nginx.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/README.md -------------------------------------------------------------------------------- /ruby-passenger/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/template/Dockerfile -------------------------------------------------------------------------------- /ruby-passenger/template/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/template/entrypoint -------------------------------------------------------------------------------- /ruby-passenger/template/main.d/env.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/template/main.d/env.conf.erb -------------------------------------------------------------------------------- /ruby-passenger/template/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby-passenger/template/nginx.conf.erb -------------------------------------------------------------------------------- /ruby/2.7-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/2.7-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/2.7/Dockerfile -------------------------------------------------------------------------------- /ruby/3.0-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.0-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.0/Dockerfile -------------------------------------------------------------------------------- /ruby/3.1-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.1-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.1/Dockerfile -------------------------------------------------------------------------------- /ruby/3.2-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.2-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.2/Dockerfile -------------------------------------------------------------------------------- /ruby/3.3-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.3-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.3/Dockerfile -------------------------------------------------------------------------------- /ruby/3.4-jammy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.4-jammy/Dockerfile -------------------------------------------------------------------------------- /ruby/3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/3.4/Dockerfile -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/ruby/template/Dockerfile -------------------------------------------------------------------------------- /rvm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/rvm/Dockerfile -------------------------------------------------------------------------------- /scala-sbt/1.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/scala-sbt/1.5/Dockerfile -------------------------------------------------------------------------------- /scala-sbt/1.5/sbt-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/scala-sbt/1.5/sbt-private -------------------------------------------------------------------------------- /scala-sbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/scala-sbt/README.md -------------------------------------------------------------------------------- /scala-sbt/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/scala-sbt/template/Dockerfile -------------------------------------------------------------------------------- /scala-sbt/template/sbt-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/scala-sbt/template/sbt-private -------------------------------------------------------------------------------- /templates/node_install.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/templates/node_install.Dockerfile -------------------------------------------------------------------------------- /templates/yarn_install.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/templates/yarn_install.Dockerfile -------------------------------------------------------------------------------- /tini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/tini/README.md -------------------------------------------------------------------------------- /tini/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/tini/template/Dockerfile -------------------------------------------------------------------------------- /tini/v0.16.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/tini/v0.16.1/Dockerfile -------------------------------------------------------------------------------- /tini/v0.18.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/tini/v0.18.0/Dockerfile -------------------------------------------------------------------------------- /tini/v0.19.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/tini/v0.19.0/Dockerfile -------------------------------------------------------------------------------- /yq/4.44.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/yq/4.44.1/Dockerfile -------------------------------------------------------------------------------- /yq/template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure/dockerfiles/HEAD/yq/template/Dockerfile --------------------------------------------------------------------------------