Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/docker-exec/python


https://github.com/docker-exec/python

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Docker Exec Image: s

A Dockerfile describing an container capable of executing s source files.

# Build

```sh
git clone https://github.com/docker-exec/python.git
docker build -t dexec/lang-python .
```

# Usage

In a directory containing a script e.g. foo.py, run:

```sh
docker run -t --rm \
-v $(pwd -P)/foo.py:/tmp/dexec/build/foo.py \
dexec/lang-python foo.py
```

## Passing arguments to the script

Arguments can be passed to the script using any of the following forms:

```
-a argument
--arg argument
--arg=argument
```

Each argument passed must be prefixed in this way, e.g.

```sh
docker run -t --rm \
-v $(pwd -P)/foo.py:/tmp/dexec/build/foo.py \
dexec/lang-python foo.py \
--arg='hello world' \
--arg=foo \
--arg=bar
```