Docker image for creating a container with Chocolatey running on Mono
Test the image using docker run --rm -v $PWD:$PWD -w $PWD linuturk/mono-choco
See the example directory for a basic package example.
- "Cannot create a package that has no dependencies nor content."
The nuspec file most likely requires this for the files section:
<files>
<file src="tools/**" target="tools" />
</files>
Note the comment in the nuspec template that reads:
<!--Building from Linux? You may need this instead: <file src="tools/**" target="tools" />-->