Metadata-Version: 2.0
Name: grocker
Version: 4.6
Summary: Docker image builder
Home-page: http://github.com/polyconseil/grocker
Author: Polyconseil
Author-email: opensource+grocker@polyconseil.fr
License: BSD
Keywords: docker build packaging
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Software Distribution
Requires-Dist: Jinja2
Requires-Dist: docker-py (!=1.10.*)
Requires-Dist: packaging
Requires-Dist: pip (>=7.1.2)
Requires-Dist: pyyaml (>=3.11)
Requires-Dist: setuptools (>=18.0.1)
Requires-Dist: enum34; python_version == '2.7'

Grocker - a Docker image builder for Python applications
========================================================

*Grocker* allows you to bundle your Python applications as Docker image
while keeping the image size as minimal as possible.

*Grocker* uses ``debian:jessie`` as its base image. But we have plans to
allow using a lightweight distribution such as Alpine Linux in a near future.

*Grocker* is hosted on Github at https://github.com/polyconseil/Grocker.
*Grocker* full documentation is available on https://grocker.readthedocs.io/.

Installation
============

1. Install Docker Engine. See `its official documentation <https://docs.docker.com/engine/>`_.
2. Install Grocker with *pip*: ``pip install grocker``.

Basic usage
===========

.. code-block:: console

    $ grocker build ipython==5.0.0 --entrypoint ipython
    $ docker run --rm -ti ipython:5.0.0-<grocker-version>


