Skip to content

Docker image that provides gauge cli with dotnet core plugin

Notifications You must be signed in to change notification settings

roketworks/gauge-dotnet-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

gauge-dotnet-docker

Docker wrapped version of the gauge cli with dotnet core plugin, that can be used to run gauge tests in build pipelines etc.

Example Usage

Dockerfile

FROM mikemcfarland/gauge-dotnet
COPY . .
CMD ["gauge", "run", "specs"]

Command Line

To use the image from your gauge project directory

Linux

docker run --rm -v $(pwd):/workspace -w /workspace mikemcfarland/gauge-dotnet gauge run specs

You can map this image to gauge to simplify the command

echo 'function octo(){ sudo docker run --rm -v $(pwd):/workspace -w /workspace mikemcfarland/gauge-dotnet "$@" ;}' >> ~/.bashrc
source ~/.bashrc
gauge run specs

Windows

docker run --rm -v ${PWD}:/workspace -w /workspace mikemcfarland/gauge-dotnet gauge run specs

About

Docker image that provides gauge cli with dotnet core plugin

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published