Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

Docker Exec Image: s

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

Build

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:

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.

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

About

No description, website, or topics provided.

Resources

License

Packages

No packages published

Languages

You can’t perform that action at this time.