Metadata-Version: 2.1
Name: ddnp
Version: 1.0.0
Summary: Docker Data Network Proxy
Home-page: https://github.com/al-niessner/DCP
Author: Al Niessner
Author-email: Al.Niessner@jpl.nasa.gov
License: see LICENSE file for details
Keywords: docker data network proxy copy secret environment
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: Free To Use But Restricted
Classifier: Development Status :: 5 - Production/Stable
Description-Content-Type: text/markdown
Requires-Dist: flask

# DDNP: Docker Data Network Proxy

Utility for providing data from the build host to the build process container.


## Check code (static analysis)

```
pylint -d C0321,C0326,C0411,W0107,R1711 ddnp
```

## Build docker container

```
export DDNP_VERSION=1.0.0
docker build --build-arg VERSION=$DDNP_VERSION \
             --tag ddnp:${DDNP_VERSION} - < Dockerfile
```

## Run locally (mainly for testing)

```
PYTHONPATH=/home/niessner/Projects/DCP python3 -m ddnp -e /home/niessner/Projects/DCP/example.txt -v /tmp/test
```


