Skip to content

docker-exec/objc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Exec Image: Objective C

A Dockerfile describing an container capable of executing Objective C source files.

Build

git clone https://github.com/docker-exec/objc.git
docker build -t dexec/lang-objc .

Usage

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

docker run -t --rm \
    -v $(pwd -P)/foo.m:/tmp/dexec/build/foo.m \
    dexec/lang-objc foo.m

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.m:/tmp/dexec/build/foo.m \
    dexec/lang-objc foo.m \
    --arg='hello world' \
    --arg=foo \
    --arg=bar

Passing arguments to the compiler

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

-b argument
--build-arg argument
--build-arg=argument

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

docker run -t --rm \
    -v $(pwd -P)/foo.m:/tmp/dexec/build/foo.m \
    dexec/lang-objc foo.m \
    --build-arg=-some-compiler-option \
    --build-arg=some-compiler-option-value

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published