├── .github ├── dependabot.yml └── workflows │ ├── build-and-push.yml │ └── container-tests.yml ├── .gitignore ├── .gitmodules ├── 3.11-minimal ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── README.md ├── root │ ├── opt │ │ ├── app-root │ │ │ └── etc │ │ │ │ └── generate_container_user │ │ └── wheels │ └── usr │ │ └── bin │ │ ├── cgroup-limits │ │ ├── fix-permissions │ │ └── rpm-file-permissions ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── mod_wsgi.Dockerfile.tpl │ └── uwsgi.Dockerfile.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── numpy-test-app │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ ├── test_ocp_python_ex_template.py │ └── uwsgi-test-app ├── 3.11 ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── Dockerfile.tpl │ └── Dockerfile_no_s2i.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── mod-wsgi-test-app │ ├── npm-virtualenv-uwsgi-test-app │ ├── numpy-test-app │ ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ └── test_ocp_python_ex_template.py ├── 3.12-minimal ├── Dockerfile.c10s ├── Dockerfile.c9s ├── Dockerfile.rhel10 ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ ├── opt │ │ ├── app-root │ │ │ └── etc │ │ │ │ └── generate_container_user │ │ └── wheels │ └── usr │ │ └── bin │ │ ├── cgroup-limits │ │ ├── fix-permissions │ │ └── rpm-file-permissions ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── mod_wsgi.Dockerfile.tpl │ └── uwsgi.Dockerfile.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── numpy-test-app │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ ├── test_ocp_python_ex_template.py │ └── uwsgi-test-app ├── 3.12 ├── Dockerfile.c10s ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── Dockerfile.tpl │ └── Dockerfile_no_s2i.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── mod-wsgi-test-app │ ├── npm-virtualenv-uwsgi-test-app │ ├── numpy-test-app │ ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ └── test_ocp_python_ex_template.py ├── 3.13-minimal ├── Dockerfile.c10s ├── Dockerfile.fedora ├── README.md ├── root │ ├── opt │ │ ├── app-root │ │ │ └── etc │ │ │ │ └── generate_container_user │ │ └── wheels │ └── usr │ │ └── bin │ │ ├── cgroup-limits │ │ ├── fix-permissions │ │ └── rpm-file-permissions ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── mod_wsgi.Dockerfile.tpl │ └── uwsgi.Dockerfile.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── numpy-test-app │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ ├── test_ocp_python_ex_template.py │ └── uwsgi-test-app ├── 3.13 ├── Dockerfile.c10s ├── Dockerfile.fedora ├── README.md ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── Dockerfile.tpl │ └── Dockerfile_no_s2i.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── mod-wsgi-test-app │ ├── npm-virtualenv-uwsgi-test-app │ ├── numpy-test-app │ ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ └── test_ocp_python_ex_template.py ├── 3.6 ├── Dockerfile.rhel8 ├── README.md ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── Dockerfile.tpl │ └── Dockerfile_no_s2i.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── mod-wsgi-test-app │ ├── npm-virtualenv-uwsgi-test-app │ ├── numpy-test-app │ ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ └── test_ocp_python_ex_template.py ├── 3.9-minimal ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── README.md ├── root │ ├── opt │ │ ├── app-root │ │ │ └── etc │ │ │ │ └── generate_container_user │ │ └── wheels │ └── usr │ │ └── bin │ │ ├── cgroup-limits │ │ ├── fix-permissions │ │ └── rpm-file-permissions ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── mod_wsgi.Dockerfile.tpl │ └── uwsgi.Dockerfile.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── numpy-test-app │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ ├── test_ocp_python_ex_template.py │ └── uwsgi-test-app ├── 3.9 ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── app-home-test-app │ ├── app-module-test-app │ ├── check_imagestreams.py │ ├── conftest.py │ ├── django-different-port-test-app │ ├── django-test-app │ ├── from-dockerfile │ ├── Dockerfile.tpl │ └── Dockerfile_no_s2i.tpl │ ├── gunicorn-config-different-port-test-app │ ├── gunicorn-different-port-test-app │ ├── gunicorn-python-configfile-different-port-test-app │ ├── imagestreams │ ├── locale-test-app │ ├── micropipenv-requirements-test-app │ ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── mod-wsgi-test-app │ ├── npm-virtualenv-uwsgi-test-app │ ├── numpy-test-app │ ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── pipenv-and-micropipenv-should-fail-test-app │ ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py │ ├── poetry-src-layout-test-app │ ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── setup-cfg-test-app │ ├── setup-requirements-test-app │ ├── setup-test-app │ ├── standalone-custom-pypi-index-test-app │ ├── standalone-test-app │ ├── test-lib-openshift.sh │ ├── test-lib-python.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_application.py │ ├── test_container_basics.py │ ├── test_ocp_deploy_templates.py │ ├── test_ocp_helm_python_django_app.py │ ├── test_ocp_helm_python_django_psql_persistent.py │ ├── test_ocp_helm_python_imagestreams.py │ ├── test_ocp_imagestreams_quickstart.py │ ├── test_ocp_python_ex_standalone.py │ └── test_ocp_python_ex_template.py ├── LICENSE ├── Makefile ├── README.md ├── examples ├── app-home-test-app │ ├── .s2i │ │ └── environment │ ├── project │ │ └── wsgi.py │ └── requirements.txt ├── app-module-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── app.py │ └── requirements.txt ├── django-different-port-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt ├── django-postgresql-persistent.json ├── django-postgresql.json ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt ├── gunicorn-config-different-port-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── app.py │ ├── gunicorn.conf.py │ └── requirements.txt ├── gunicorn-different-port-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── app.py │ └── requirements.txt ├── gunicorn-python-configfile-different-port-test-app │ ├── .gitignore │ ├── app.py │ ├── gunicorn.conf.py │ └── requirements.txt ├── locale-test-app │ ├── requirements.txt │ └── wsgi.py ├── micropipenv-requirements-test-app │ ├── .s2i │ │ └── environment │ ├── app.py │ ├── requirements.txt │ └── wsgi.py ├── micropipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py ├── mod-wsgi-test-app │ ├── app.py │ ├── requirements.txt │ └── wsgi.py ├── npm-virtualenv-uwsgi-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py ├── numpy-test-app │ ├── requirements.txt │ └── wsgi.py ├── pin-pipenv-version-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py ├── pipenv-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── Pipfile │ ├── Pipfile.lock │ ├── setup.py │ └── testapp.py ├── poetry-src-layout-test-app │ ├── .s2i │ │ └── environment │ ├── poetry.lock │ ├── pyproject.toml │ └── src │ │ └── poetry_src_layout │ │ └── __init__.py ├── pyuwsgi-pipenv-test-app │ ├── .s2i │ │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py ├── setup-cfg-test-app │ ├── pyproject.toml │ ├── setup.cfg │ └── wsgi.py ├── setup-requirements-test-app │ ├── .gitignore │ ├── requirements.txt │ ├── setup.py │ └── testapp.py ├── setup-test-app │ ├── .gitignore │ ├── requirements.txt │ ├── setup.py │ └── testapp.py ├── standalone-custom-pypi-index-test-app │ ├── .gitignore │ ├── .s2i │ │ └── environment │ ├── app.py │ ├── app.sh │ └── requirements.txt ├── standalone-test-app │ ├── app.py │ └── requirements.txt └── uwsgi-test-app │ ├── .s2i │ └── environment │ ├── app.sh │ ├── requirements.txt │ └── wsgi.py ├── imagestreams ├── imagestreams.yaml ├── python-centos.json ├── python-rhel-aarch64.json └── python-rhel.json ├── manifest-minimal.yml ├── manifest.yml ├── specs └── multispec.yml ├── src ├── Dockerfile-minimal.template ├── Dockerfile.template ├── README-minimal.md ├── README.md ├── centos-stream │ └── macros.tpl ├── common.tpl ├── fedora │ └── macros.tpl ├── rhel │ └── macros.tpl ├── root │ └── opt │ │ ├── app-root │ │ └── etc │ │ │ └── generate_container_user │ │ └── wheels │ │ └── pip-24.2-py3-none-any.whl ├── s2i │ └── bin │ │ ├── assemble │ │ ├── init-wrapper │ │ ├── run │ │ └── usage └── test │ ├── from-dockerfile │ ├── Dockerfile.tpl │ ├── Dockerfile_no_s2i.tpl │ ├── mod_wsgi.Dockerfile.tpl │ └── uwsgi.Dockerfile.tpl │ ├── pin-pipenv-version-test-app │ └── .s2i │ │ └── environment │ ├── pipenv-and-micropipenv-should-fail-test-app │ └── .s2i │ │ └── environment │ └── pipenv-test-app │ ├── 3.11 │ └── Pipfile.lock │ ├── 3.12 │ └── Pipfile.lock │ ├── 3.13 │ └── Pipfile.lock │ ├── 3.6 │ └── Pipfile.lock │ ├── 3.9 │ └── Pipfile.lock │ ├── Pipfile │ └── Pipfile.lock └── test ├── __init__.py ├── check_imagestreams.py ├── conftest.py ├── imagestreams ├── run ├── run-openshift-pytest ├── run-openshift-remote-cluster ├── run-pytest ├── show_all_imagestreams.py ├── test-lib-openshift.sh ├── test-lib-python.sh ├── test-lib.sh ├── test-openshift.yaml ├── test_container_application.py ├── test_container_basics.py ├── test_ocp_deploy_templates.py ├── test_ocp_helm_python_django_app.py ├── test_ocp_helm_python_django_psql_persistent.py ├── test_ocp_helm_python_imagestreams.py ├── test_ocp_imagestreams_quickstart.py ├── test_ocp_latest_imagestreams.py ├── test_ocp_python_ex_standalone.py └── test_ocp_python_ex_template.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/container-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/.github/workflows/container-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/.gitmodules -------------------------------------------------------------------------------- /3.11-minimal/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/Dockerfile.c9s -------------------------------------------------------------------------------- /3.11-minimal/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.11-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/README.md -------------------------------------------------------------------------------- /3.11-minimal/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.11-minimal/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.11-minimal/root/usr/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/root/usr/bin/cgroup-limits -------------------------------------------------------------------------------- /3.11-minimal/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/root/usr/bin/fix-permissions -------------------------------------------------------------------------------- /3.11-minimal/root/usr/bin/rpm-file-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/root/usr/bin/rpm-file-permissions -------------------------------------------------------------------------------- /3.11-minimal/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/s2i/bin/assemble -------------------------------------------------------------------------------- /3.11-minimal/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.11-minimal/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/s2i/bin/run -------------------------------------------------------------------------------- /3.11-minimal/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/s2i/bin/usage -------------------------------------------------------------------------------- /3.11-minimal/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.11-minimal/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.11-minimal/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.11-minimal/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/from-dockerfile/mod_wsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.11-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.11-minimal/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.11-minimal/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.11-minimal/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.11-minimal/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.11-minimal/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.11-minimal/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11-minimal/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.11-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.11-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.11-minimal/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/run -------------------------------------------------------------------------------- /3.11-minimal/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.11-minimal/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.11-minimal/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11-minimal/test/run-pytest -------------------------------------------------------------------------------- /3.11-minimal/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.11-minimal/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.11-minimal/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.11-minimal/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.11-minimal/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.11-minimal/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.11-minimal/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.11-minimal/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.11-minimal/test/uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/uwsgi-test-app -------------------------------------------------------------------------------- /3.11/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/Dockerfile.c9s -------------------------------------------------------------------------------- /3.11/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.11/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/Dockerfile.rhel9 -------------------------------------------------------------------------------- /3.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/README.md -------------------------------------------------------------------------------- /3.11/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.11/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.11/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/s2i/bin/assemble -------------------------------------------------------------------------------- /3.11/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.11/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/s2i/bin/run -------------------------------------------------------------------------------- /3.11/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/s2i/bin/usage -------------------------------------------------------------------------------- /3.11/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.11/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.11/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.11/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.11/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.11/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.11/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.11/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /3.11/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /3.11/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.11/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.11/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.11/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.11/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.11/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.11/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.11/test/mod-wsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/mod-wsgi-test-app -------------------------------------------------------------------------------- /3.11/test/npm-virtualenv-uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/npm-virtualenv-uwsgi-test-app -------------------------------------------------------------------------------- /3.11/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.11/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11/test/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /3.11/test/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /3.11/test/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /3.11/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.11/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.11/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.11/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.11/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.11/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.11/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.11/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/run -------------------------------------------------------------------------------- /3.11/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.11/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.11/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.11/test/run-pytest -------------------------------------------------------------------------------- /3.11/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.11/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.11/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.11/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.11/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.11/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.11/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.11/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.11/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.11/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.11/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.11/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.11/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.12-minimal/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/Dockerfile.c10s -------------------------------------------------------------------------------- /3.12-minimal/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/Dockerfile.c9s -------------------------------------------------------------------------------- /3.12-minimal/Dockerfile.rhel10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/Dockerfile.rhel10 -------------------------------------------------------------------------------- /3.12-minimal/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.12-minimal/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/Dockerfile.rhel9 -------------------------------------------------------------------------------- /3.12-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/README.md -------------------------------------------------------------------------------- /3.12-minimal/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.12-minimal/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.12-minimal/root/usr/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/root/usr/bin/cgroup-limits -------------------------------------------------------------------------------- /3.12-minimal/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/root/usr/bin/fix-permissions -------------------------------------------------------------------------------- /3.12-minimal/root/usr/bin/rpm-file-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/root/usr/bin/rpm-file-permissions -------------------------------------------------------------------------------- /3.12-minimal/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/s2i/bin/assemble -------------------------------------------------------------------------------- /3.12-minimal/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.12-minimal/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/s2i/bin/run -------------------------------------------------------------------------------- /3.12-minimal/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/s2i/bin/usage -------------------------------------------------------------------------------- /3.12-minimal/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.12-minimal/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.12-minimal/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.12-minimal/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/from-dockerfile/mod_wsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.12-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.12-minimal/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.12-minimal/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.12-minimal/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.12-minimal/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.12-minimal/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.12-minimal/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12-minimal/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.12-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.12-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.12-minimal/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/run -------------------------------------------------------------------------------- /3.12-minimal/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.12-minimal/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.12-minimal/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12-minimal/test/run-pytest -------------------------------------------------------------------------------- /3.12-minimal/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.12-minimal/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.12-minimal/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.12-minimal/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.12-minimal/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.12-minimal/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.12-minimal/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.12-minimal/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.12-minimal/test/uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/uwsgi-test-app -------------------------------------------------------------------------------- /3.12/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/Dockerfile.c10s -------------------------------------------------------------------------------- /3.12/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/Dockerfile.c9s -------------------------------------------------------------------------------- /3.12/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.12/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/Dockerfile.rhel9 -------------------------------------------------------------------------------- /3.12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/README.md -------------------------------------------------------------------------------- /3.12/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.12/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.12/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/s2i/bin/assemble -------------------------------------------------------------------------------- /3.12/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.12/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/s2i/bin/run -------------------------------------------------------------------------------- /3.12/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/s2i/bin/usage -------------------------------------------------------------------------------- /3.12/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.12/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.12/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.12/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.12/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.12/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.12/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.12/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /3.12/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /3.12/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.12/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.12/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.12/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.12/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.12/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.12/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.12/test/mod-wsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/mod-wsgi-test-app -------------------------------------------------------------------------------- /3.12/test/npm-virtualenv-uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/npm-virtualenv-uwsgi-test-app -------------------------------------------------------------------------------- /3.12/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.12/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12/test/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /3.12/test/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /3.12/test/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /3.12/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.12/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.12/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.12/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.12/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.12/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.12/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.12/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/run -------------------------------------------------------------------------------- /3.12/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.12/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.12/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.12/test/run-pytest -------------------------------------------------------------------------------- /3.12/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.12/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.12/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.12/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.12/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.12/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.12/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.12/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.12/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.12/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.12/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.12/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.12/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.13-minimal/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/Dockerfile.c10s -------------------------------------------------------------------------------- /3.13-minimal/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/Dockerfile.fedora -------------------------------------------------------------------------------- /3.13-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/README.md -------------------------------------------------------------------------------- /3.13-minimal/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.13-minimal/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.13-minimal/root/usr/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/root/usr/bin/cgroup-limits -------------------------------------------------------------------------------- /3.13-minimal/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/root/usr/bin/fix-permissions -------------------------------------------------------------------------------- /3.13-minimal/root/usr/bin/rpm-file-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/root/usr/bin/rpm-file-permissions -------------------------------------------------------------------------------- /3.13-minimal/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/s2i/bin/assemble -------------------------------------------------------------------------------- /3.13-minimal/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.13-minimal/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/s2i/bin/run -------------------------------------------------------------------------------- /3.13-minimal/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/s2i/bin/usage -------------------------------------------------------------------------------- /3.13-minimal/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.13-minimal/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.13-minimal/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.13-minimal/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/from-dockerfile/mod_wsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.13-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.13-minimal/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.13-minimal/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.13-minimal/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.13-minimal/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.13-minimal/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.13-minimal/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13-minimal/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.13-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.13-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.13-minimal/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/run -------------------------------------------------------------------------------- /3.13-minimal/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.13-minimal/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.13-minimal/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13-minimal/test/run-pytest -------------------------------------------------------------------------------- /3.13-minimal/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.13-minimal/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.13-minimal/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.13-minimal/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.13-minimal/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.13-minimal/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.13-minimal/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.13-minimal/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.13-minimal/test/uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/uwsgi-test-app -------------------------------------------------------------------------------- /3.13/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/Dockerfile.c10s -------------------------------------------------------------------------------- /3.13/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/Dockerfile.fedora -------------------------------------------------------------------------------- /3.13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/README.md -------------------------------------------------------------------------------- /3.13/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.13/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.13/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/s2i/bin/assemble -------------------------------------------------------------------------------- /3.13/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.13/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/s2i/bin/run -------------------------------------------------------------------------------- /3.13/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/s2i/bin/usage -------------------------------------------------------------------------------- /3.13/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.13/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.13/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.13/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.13/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.13/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.13/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.13/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /3.13/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /3.13/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.13/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.13/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.13/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.13/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.13/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.13/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.13/test/mod-wsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/mod-wsgi-test-app -------------------------------------------------------------------------------- /3.13/test/npm-virtualenv-uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/npm-virtualenv-uwsgi-test-app -------------------------------------------------------------------------------- /3.13/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.13/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13/test/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /3.13/test/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /3.13/test/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /3.13/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.13/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.13/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.13/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.13/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.13/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.13/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.13/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/run -------------------------------------------------------------------------------- /3.13/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.13/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.13/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.13/test/run-pytest -------------------------------------------------------------------------------- /3.13/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.13/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.13/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.13/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.13/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.13/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.13/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.13/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.13/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.13/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.13/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.13/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.13/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.6/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/README.md -------------------------------------------------------------------------------- /3.6/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.6/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.6/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/s2i/bin/assemble -------------------------------------------------------------------------------- /3.6/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.6/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/s2i/bin/run -------------------------------------------------------------------------------- /3.6/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/s2i/bin/usage -------------------------------------------------------------------------------- /3.6/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.6/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.6/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.6/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.6/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.6/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.6/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.6/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /3.6/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /3.6/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.6/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.6/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.6/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.6/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.6/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.6/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.6/test/mod-wsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/mod-wsgi-test-app -------------------------------------------------------------------------------- /3.6/test/npm-virtualenv-uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/npm-virtualenv-uwsgi-test-app -------------------------------------------------------------------------------- /3.6/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.6/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.6/test/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /3.6/test/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /3.6/test/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /3.6/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.6/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.6/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.6/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.6/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.6/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.6/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.6/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/run -------------------------------------------------------------------------------- /3.6/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.6/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.6/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.6/test/run-pytest -------------------------------------------------------------------------------- /3.6/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.6/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.6/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.6/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.6/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.6/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.6/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.6/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.6/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.6/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.6/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.6/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.6/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.9-minimal/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/Dockerfile.c9s -------------------------------------------------------------------------------- /3.9-minimal/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.9-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/README.md -------------------------------------------------------------------------------- /3.9-minimal/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.9-minimal/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.9-minimal/root/usr/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/root/usr/bin/cgroup-limits -------------------------------------------------------------------------------- /3.9-minimal/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/root/usr/bin/fix-permissions -------------------------------------------------------------------------------- /3.9-minimal/root/usr/bin/rpm-file-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/root/usr/bin/rpm-file-permissions -------------------------------------------------------------------------------- /3.9-minimal/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/s2i/bin/assemble -------------------------------------------------------------------------------- /3.9-minimal/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.9-minimal/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/s2i/bin/run -------------------------------------------------------------------------------- /3.9-minimal/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/s2i/bin/usage -------------------------------------------------------------------------------- /3.9-minimal/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.9-minimal/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.9-minimal/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.9-minimal/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/from-dockerfile/mod_wsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.9-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/from-dockerfile/uwsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /3.9-minimal/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.9-minimal/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.9-minimal/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.9-minimal/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.9-minimal/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.9-minimal/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9-minimal/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.9-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.9-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.9-minimal/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/run -------------------------------------------------------------------------------- /3.9-minimal/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.9-minimal/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.9-minimal/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9-minimal/test/run-pytest -------------------------------------------------------------------------------- /3.9-minimal/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.9-minimal/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.9-minimal/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.9-minimal/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.9-minimal/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.9-minimal/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.9-minimal/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.9-minimal/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /3.9-minimal/test/uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/uwsgi-test-app -------------------------------------------------------------------------------- /3.9/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/Dockerfile.c9s -------------------------------------------------------------------------------- /3.9/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/Dockerfile.rhel8 -------------------------------------------------------------------------------- /3.9/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/Dockerfile.rhel9 -------------------------------------------------------------------------------- /3.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/README.md -------------------------------------------------------------------------------- /3.9/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /3.9/root/opt/wheels: -------------------------------------------------------------------------------- 1 | ../../../src/root/opt/wheels/ -------------------------------------------------------------------------------- /3.9/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/s2i/bin/assemble -------------------------------------------------------------------------------- /3.9/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /3.9/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/s2i/bin/run -------------------------------------------------------------------------------- /3.9/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/s2i/bin/usage -------------------------------------------------------------------------------- /3.9/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /3.9/test/app-home-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-home-test-app -------------------------------------------------------------------------------- /3.9/test/app-module-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/app-module-test-app -------------------------------------------------------------------------------- /3.9/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /3.9/test/conftest.py: -------------------------------------------------------------------------------- 1 | ../../test/conftest.py -------------------------------------------------------------------------------- /3.9/test/django-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-different-port-test-app -------------------------------------------------------------------------------- /3.9/test/django-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/django-test-app -------------------------------------------------------------------------------- /3.9/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- 1 | ../../../src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /3.9/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /3.9/test/gunicorn-config-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-config-different-port-test-app -------------------------------------------------------------------------------- /3.9/test/gunicorn-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-different-port-test-app -------------------------------------------------------------------------------- /3.9/test/gunicorn-python-configfile-different-port-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/gunicorn-python-configfile-different-port-test-app -------------------------------------------------------------------------------- /3.9/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams -------------------------------------------------------------------------------- /3.9/test/locale-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/locale-test-app -------------------------------------------------------------------------------- /3.9/test/micropipenv-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/micropipenv-requirements-test-app -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.9/test/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.9/test/mod-wsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/mod-wsgi-test-app -------------------------------------------------------------------------------- /3.9/test/npm-virtualenv-uwsgi-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/npm-virtualenv-uwsgi-test-app -------------------------------------------------------------------------------- /3.9/test/numpy-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/numpy-test-app -------------------------------------------------------------------------------- /3.9/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9/test/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /3.9/test/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /3.9/test/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /3.9/test/pipenv-and-micropipenv-should-fail-test-app: -------------------------------------------------------------------------------- 1 | ../../src/test/pipenv-and-micropipenv-should-fail-test-app -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /3.9/test/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /3.9/test/poetry-src-layout-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/poetry-src-layout-test-app -------------------------------------------------------------------------------- /3.9/test/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /3.9/test/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /3.9/test/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /3.9/test/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /3.9/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/run -------------------------------------------------------------------------------- /3.9/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /3.9/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /3.9/test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/3.9/test/run-pytest -------------------------------------------------------------------------------- /3.9/test/setup-cfg-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-cfg-test-app -------------------------------------------------------------------------------- /3.9/test/setup-requirements-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-requirements-test-app -------------------------------------------------------------------------------- /3.9/test/setup-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/setup-test-app -------------------------------------------------------------------------------- /3.9/test/standalone-custom-pypi-index-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-custom-pypi-index-test-app -------------------------------------------------------------------------------- /3.9/test/standalone-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/standalone-test-app -------------------------------------------------------------------------------- /3.9/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /3.9/test/test-lib-python.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-python.sh -------------------------------------------------------------------------------- /3.9/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /3.9/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /3.9/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /3.9/test/test_container_application.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_application.py -------------------------------------------------------------------------------- /3.9/test/test_container_basics.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_basics.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /3.9/test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_python_ex_template.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/README.md -------------------------------------------------------------------------------- /examples/app-home-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | APP_HOME=project 2 | -------------------------------------------------------------------------------- /examples/app-home-test-app/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/app-home-test-app/project/wsgi.py -------------------------------------------------------------------------------- /examples/app-home-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/app-home-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/app-module-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/app-module-test-app/.gitignore -------------------------------------------------------------------------------- /examples/app-module-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | APP_MODULE=app:application 2 | -------------------------------------------------------------------------------- /examples/app-module-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/app-module-test-app/app.py -------------------------------------------------------------------------------- /examples/app-module-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/app-module-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/django-different-port-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/.gitignore -------------------------------------------------------------------------------- /examples/django-different-port-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | PORT=8085 2 | -------------------------------------------------------------------------------- /examples/django-different-port-test-app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/manage.py -------------------------------------------------------------------------------- /examples/django-different-port-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django-different-port-test-app/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/project/settings.py -------------------------------------------------------------------------------- /examples/django-different-port-test-app/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/project/urls.py -------------------------------------------------------------------------------- /examples/django-different-port-test-app/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/project/wsgi.py -------------------------------------------------------------------------------- /examples/django-different-port-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-different-port-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/django-postgresql-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-postgresql-persistent.json -------------------------------------------------------------------------------- /examples/django-postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-postgresql.json -------------------------------------------------------------------------------- /examples/django-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/.gitignore -------------------------------------------------------------------------------- /examples/django-test-app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/manage.py -------------------------------------------------------------------------------- /examples/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django-test-app/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/project/settings.py -------------------------------------------------------------------------------- /examples/django-test-app/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/project/urls.py -------------------------------------------------------------------------------- /examples/django-test-app/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/project/wsgi.py -------------------------------------------------------------------------------- /examples/django-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/django-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-config-different-port-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-config-different-port-test-app/.gitignore -------------------------------------------------------------------------------- /examples/gunicorn-config-different-port-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-config-different-port-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/gunicorn-config-different-port-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-config-different-port-test-app/app.py -------------------------------------------------------------------------------- /examples/gunicorn-config-different-port-test-app/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-config-different-port-test-app/gunicorn.conf.py -------------------------------------------------------------------------------- /examples/gunicorn-config-different-port-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-config-different-port-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-different-port-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-different-port-test-app/.gitignore -------------------------------------------------------------------------------- /examples/gunicorn-different-port-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | APP_MODULE=app:application 2 | PORT=8085 3 | -------------------------------------------------------------------------------- /examples/gunicorn-different-port-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-different-port-test-app/app.py -------------------------------------------------------------------------------- /examples/gunicorn-different-port-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-different-port-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-python-configfile-different-port-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-python-configfile-different-port-test-app/.gitignore -------------------------------------------------------------------------------- /examples/gunicorn-python-configfile-different-port-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-python-configfile-different-port-test-app/app.py -------------------------------------------------------------------------------- /examples/gunicorn-python-configfile-different-port-test-app/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/gunicorn-python-configfile-different-port-test-app/gunicorn.conf.py -------------------------------------------------------------------------------- /examples/gunicorn-python-configfile-different-port-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn>=20.1.0 2 | -------------------------------------------------------------------------------- /examples/locale-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/locale-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/locale-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/locale-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/micropipenv-requirements-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-requirements-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/micropipenv-requirements-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-requirements-test-app/app.py -------------------------------------------------------------------------------- /examples/micropipenv-requirements-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-requirements-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/micropipenv-requirements-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-requirements-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/micropipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/.gitignore -------------------------------------------------------------------------------- /examples/micropipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/micropipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/Pipfile -------------------------------------------------------------------------------- /examples/micropipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /examples/micropipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/setup.py -------------------------------------------------------------------------------- /examples/micropipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/micropipenv-test-app/testapp.py -------------------------------------------------------------------------------- /examples/mod-wsgi-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/mod-wsgi-test-app/app.py -------------------------------------------------------------------------------- /examples/mod-wsgi-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/mod-wsgi-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/mod-wsgi-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/mod-wsgi-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/npm-virtualenv-uwsgi-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | UPGRADE_PIP_TO_LATEST=1 2 | -------------------------------------------------------------------------------- /examples/npm-virtualenv-uwsgi-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/npm-virtualenv-uwsgi-test-app/app.sh -------------------------------------------------------------------------------- /examples/npm-virtualenv-uwsgi-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /examples/npm-virtualenv-uwsgi-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/npm-virtualenv-uwsgi-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/numpy-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/numpy-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/numpy-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/numpy-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/pin-pipenv-version-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pin-pipenv-version-test-app/app.sh -------------------------------------------------------------------------------- /examples/pin-pipenv-version-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /examples/pin-pipenv-version-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pin-pipenv-version-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/pipenv-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/.gitignore -------------------------------------------------------------------------------- /examples/pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /examples/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /examples/pipenv-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/setup.py -------------------------------------------------------------------------------- /examples/pipenv-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pipenv-test-app/testapp.py -------------------------------------------------------------------------------- /examples/poetry-src-layout-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | APP_MODULE="poetry_src_layout:application" 2 | -------------------------------------------------------------------------------- /examples/poetry-src-layout-test-app/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/poetry-src-layout-test-app/poetry.lock -------------------------------------------------------------------------------- /examples/poetry-src-layout-test-app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/poetry-src-layout-test-app/pyproject.toml -------------------------------------------------------------------------------- /examples/poetry-src-layout-test-app/src/poetry_src_layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/poetry-src-layout-test-app/src/poetry_src_layout/__init__.py -------------------------------------------------------------------------------- /examples/pyuwsgi-pipenv-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pyuwsgi-pipenv-test-app/.s2i/environment -------------------------------------------------------------------------------- /examples/pyuwsgi-pipenv-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pyuwsgi-pipenv-test-app/app.sh -------------------------------------------------------------------------------- /examples/pyuwsgi-pipenv-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pyuwsgi-pipenv-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/pyuwsgi-pipenv-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/pyuwsgi-pipenv-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/setup-cfg-test-app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-cfg-test-app/pyproject.toml -------------------------------------------------------------------------------- /examples/setup-cfg-test-app/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-cfg-test-app/setup.cfg -------------------------------------------------------------------------------- /examples/setup-cfg-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-cfg-test-app/wsgi.py -------------------------------------------------------------------------------- /examples/setup-requirements-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-requirements-test-app/.gitignore -------------------------------------------------------------------------------- /examples/setup-requirements-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-requirements-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/setup-requirements-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-requirements-test-app/setup.py -------------------------------------------------------------------------------- /examples/setup-requirements-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-requirements-test-app/testapp.py -------------------------------------------------------------------------------- /examples/setup-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-test-app/.gitignore -------------------------------------------------------------------------------- /examples/setup-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/setup-test-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-test-app/setup.py -------------------------------------------------------------------------------- /examples/setup-test-app/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/setup-test-app/testapp.py -------------------------------------------------------------------------------- /examples/standalone-custom-pypi-index-test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/standalone-custom-pypi-index-test-app/.gitignore -------------------------------------------------------------------------------- /examples/standalone-custom-pypi-index-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | PIP_INDEX_URL=https://test.pypi.org/simple/ 2 | DISABLE_SETUP_PY_PROCESSING=true 3 | -------------------------------------------------------------------------------- /examples/standalone-custom-pypi-index-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/standalone-custom-pypi-index-test-app/app.py -------------------------------------------------------------------------------- /examples/standalone-custom-pypi-index-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/standalone-custom-pypi-index-test-app/app.sh -------------------------------------------------------------------------------- /examples/standalone-custom-pypi-index-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | pello 2 | -------------------------------------------------------------------------------- /examples/standalone-test-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/standalone-test-app/app.py -------------------------------------------------------------------------------- /examples/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/standalone-test-app/requirements.txt -------------------------------------------------------------------------------- /examples/uwsgi-test-app/.s2i/environment: -------------------------------------------------------------------------------- 1 | UPGRADE_PIP_TO_LATEST=1 2 | -------------------------------------------------------------------------------- /examples/uwsgi-test-app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/uwsgi-test-app/app.sh -------------------------------------------------------------------------------- /examples/uwsgi-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | uWSGI 2 | Flask 3 | -------------------------------------------------------------------------------- /examples/uwsgi-test-app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/examples/uwsgi-test-app/wsgi.py -------------------------------------------------------------------------------- /imagestreams/imagestreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/imagestreams/imagestreams.yaml -------------------------------------------------------------------------------- /imagestreams/python-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/imagestreams/python-centos.json -------------------------------------------------------------------------------- /imagestreams/python-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/imagestreams/python-rhel-aarch64.json -------------------------------------------------------------------------------- /imagestreams/python-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/imagestreams/python-rhel.json -------------------------------------------------------------------------------- /manifest-minimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/manifest-minimal.yml -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/manifest.yml -------------------------------------------------------------------------------- /specs/multispec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/specs/multispec.yml -------------------------------------------------------------------------------- /src/Dockerfile-minimal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/Dockerfile-minimal.template -------------------------------------------------------------------------------- /src/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/Dockerfile.template -------------------------------------------------------------------------------- /src/README-minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/README-minimal.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/README.md -------------------------------------------------------------------------------- /src/centos-stream/macros.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/centos-stream/macros.tpl -------------------------------------------------------------------------------- /src/common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/common.tpl -------------------------------------------------------------------------------- /src/fedora/macros.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/fedora/macros.tpl -------------------------------------------------------------------------------- /src/rhel/macros.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/rhel/macros.tpl -------------------------------------------------------------------------------- /src/root/opt/app-root/etc/generate_container_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/root/opt/app-root/etc/generate_container_user -------------------------------------------------------------------------------- /src/root/opt/wheels/pip-24.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/root/opt/wheels/pip-24.2-py3-none-any.whl -------------------------------------------------------------------------------- /src/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/s2i/bin/assemble -------------------------------------------------------------------------------- /src/s2i/bin/init-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/s2i/bin/init-wrapper -------------------------------------------------------------------------------- /src/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/s2i/bin/run -------------------------------------------------------------------------------- /src/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/s2i/bin/usage -------------------------------------------------------------------------------- /src/test/from-dockerfile/Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/from-dockerfile/Dockerfile.tpl -------------------------------------------------------------------------------- /src/test/from-dockerfile/Dockerfile_no_s2i.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/from-dockerfile/Dockerfile_no_s2i.tpl -------------------------------------------------------------------------------- /src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /src/test/from-dockerfile/uwsgi.Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/from-dockerfile/uwsgi.Dockerfile.tpl -------------------------------------------------------------------------------- /src/test/pin-pipenv-version-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pin-pipenv-version-test-app/.s2i/environment -------------------------------------------------------------------------------- /src/test/pipenv-and-micropipenv-should-fail-test-app/.s2i/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-and-micropipenv-should-fail-test-app/.s2i/environment -------------------------------------------------------------------------------- /src/test/pipenv-test-app/3.11/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/3.11/Pipfile.lock -------------------------------------------------------------------------------- /src/test/pipenv-test-app/3.12/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/3.12/Pipfile.lock -------------------------------------------------------------------------------- /src/test/pipenv-test-app/3.13/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/3.13/Pipfile.lock -------------------------------------------------------------------------------- /src/test/pipenv-test-app/3.6/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/3.6/Pipfile.lock -------------------------------------------------------------------------------- /src/test/pipenv-test-app/3.9/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/3.9/Pipfile.lock -------------------------------------------------------------------------------- /src/test/pipenv-test-app/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/Pipfile -------------------------------------------------------------------------------- /src/test/pipenv-test-app/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/src/test/pipenv-test-app/Pipfile.lock -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/check_imagestreams.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/imagestreams: -------------------------------------------------------------------------------- 1 | ../imagestreams/ -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/run -------------------------------------------------------------------------------- /test/run-openshift-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/run-openshift-pytest -------------------------------------------------------------------------------- /test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/run-pytest -------------------------------------------------------------------------------- /test/show_all_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/show_all_imagestreams.py -------------------------------------------------------------------------------- /test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /test/test-lib-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test-lib-python.sh -------------------------------------------------------------------------------- /test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib.sh -------------------------------------------------------------------------------- /test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../common/test-openshift.yaml -------------------------------------------------------------------------------- /test/test_container_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_container_application.py -------------------------------------------------------------------------------- /test/test_container_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_container_basics.py -------------------------------------------------------------------------------- /test/test_ocp_deploy_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_deploy_templates.py -------------------------------------------------------------------------------- /test/test_ocp_helm_python_django_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_helm_python_django_app.py -------------------------------------------------------------------------------- /test/test_ocp_helm_python_django_psql_persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_helm_python_django_psql_persistent.py -------------------------------------------------------------------------------- /test/test_ocp_helm_python_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_helm_python_imagestreams.py -------------------------------------------------------------------------------- /test/test_ocp_imagestreams_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_imagestreams_quickstart.py -------------------------------------------------------------------------------- /test/test_ocp_latest_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_latest_imagestreams.py -------------------------------------------------------------------------------- /test/test_ocp_python_ex_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_python_ex_standalone.py -------------------------------------------------------------------------------- /test/test_ocp_python_ex_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/s2i-python-container/HEAD/test/test_ocp_python_ex_template.py --------------------------------------------------------------------------------