Metadata-Version: 2.0
Name: pydockerfile
Version: 0.0.3
Summary: Simplistic Dockerfile parsing
Home-page: https://github.com/sbuss/pydockerfile
Author: Steven Buss
Author-email: steven.buss@gmail.com
License: MIT License
Download-URL: https://github.com/sbuss/pydockerfile/tarball/v0.0.3
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4

.. image:: https://travis-ci.org/sbuss/pydockerfile.svg?branch=master
    :target: https://travis-ci.org/sbuss/pydockerfile

.. image:: https://codecov.io/github/sbuss/pydockerfile/coverage.svg?branch=master
    :target: https://codecov.io/github/sbuss/pydockerfile?branch=master

pydockerfile
============

``pydockerfile`` gives simplistic Dockerfile parsing. It performs no validation.


Installation
------------

.. code-block:: bash

    pip install pydockerfile

Usage
-----

.. code-block:: python

    import pydockerfile
    dockerfile = pydockerfile.parse_file('/path/to/Dockerfile')
    assert dockerfile.FROM


