No description, website, or topics provided.
Rust
Switch branches/tags
Nothing to show
Clone or download
Image Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
Image image-common @ 3ef9d31
Image test
Image .dockerignore
Image .gitmodules
Image Dockerfile
Image LICENSE
Image README.md

README.md

Docker Exec Image: Rust

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

Build

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

Usage

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

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

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.rs:/tmp/dexec/build/foo.rs \
    dexec/lang-rust foo.rs \
    --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.rs:/tmp/dexec/build/foo.rs \
    dexec/lang-rust foo.rs \
    --build-arg=-some-compiler-option \
    --build-arg=some-compiler-option-value