├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── linters.yaml │ └── unittests.yaml ├── .gitignore ├── .mdlint_style ├── .mdlrc ├── .packit.yaml ├── .pylintrc ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── dockerfile_parse ├── __init__.py ├── constants.py ├── parser.py └── util.py ├── docs └── pull_request_template.md ├── pytest.ini ├── python-dockerfile-parse.spec ├── rel-eng ├── lib │ └── osbsbuilder.py ├── packages │ ├── .readme │ └── python-dockerfile-parse ├── tito.props └── version_init.template ├── setup.py ├── test.sh ├── tests ├── __init__.py ├── fixtures.py ├── requirements.txt └── test_parser.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.github/workflows/linters.yaml -------------------------------------------------------------------------------- /.github/workflows/unittests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.github/workflows/unittests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlint_style: -------------------------------------------------------------------------------- 1 | all 2 | rule 'MD013', :code_blocks => false 3 | 4 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | style "./.mdlint_style" 2 | 3 | -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/.pylintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/README.md -------------------------------------------------------------------------------- /dockerfile_parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/dockerfile_parse/__init__.py -------------------------------------------------------------------------------- /dockerfile_parse/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/dockerfile_parse/constants.py -------------------------------------------------------------------------------- /dockerfile_parse/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/dockerfile_parse/parser.py -------------------------------------------------------------------------------- /dockerfile_parse/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/dockerfile_parse/util.py -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/pytest.ini -------------------------------------------------------------------------------- /python-dockerfile-parse.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/python-dockerfile-parse.spec -------------------------------------------------------------------------------- /rel-eng/lib/osbsbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/rel-eng/lib/osbsbuilder.py -------------------------------------------------------------------------------- /rel-eng/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/rel-eng/packages/.readme -------------------------------------------------------------------------------- /rel-eng/packages/python-dockerfile-parse: -------------------------------------------------------------------------------- 1 | 2.0.1-1 ./ 2 | -------------------------------------------------------------------------------- /rel-eng/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/rel-eng/tito.props -------------------------------------------------------------------------------- /rel-eng/version_init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/rel-eng/version_init.template -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/setup.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/dockerfile-parse/HEAD/tox.ini --------------------------------------------------------------------------------