Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.04 KB

README.md

File metadata and controls

34 lines (20 loc) · 1.04 KB

dotnet-script Docker Image

Build status

This is a Docker image containing the latest version of dotnet-script.

Running scripts

Example, shows the version of the dotnet script, 1.3.1 at the time of writing:

docker run --rm -it ghcr.io/data-intuitive/dotnet-script --version

1.3.1

Running the script foo.csx with one argument:

docker run --rm -it --volume="$PWD:/scripts:ro" ghcr.io/data-intuitive/dotnet-script foo.csx -- arg1

For further information, see dotnet-script's own readme.

Building the image locally

Standing in this folder, use the following command to build the image locally:

docker build -t ghcr.io/data-intuitive/dotnet-script:tag .

Where :tag is an optional version number, like :1.3.1.