Open zadigus opened 2 years ago
The same occurs when I build the following docker image (for pickles version 3.0.1; version 4.0.1 can't be installed through nuget):
FROM mcr.microsoft.com/dotnet/sdk:3.1
RUN dotnet tool install -g Pickles.CommandLine --version 3.0.1
Then in the docker container, when I run
export PATH="$PATH:/root/.dotnet/tools"
pickles
then I get
Pickles v.0.0.0.0
Generating documentation based on the following parameters
----------------------------------------------------------
Feature Directory : /
Output Directory : /
Project Name :
Project Version :
Language : en
Incorporate Test Results? : No
Include Experimental Features? : No
Exclude Tag :
Technical Tag :
Pickles did not complete successfully Could not find a part of the path '/dev/fd/104'.
If I, however, switch to /root/.dotnet/tools
, then the pickles
command outputs
Pickles v.0.0.0.0
Generating documentation based on the following parameters
----------------------------------------------------------
Feature Directory : /root/.dotnet/tools
Output Directory : /root/.dotnet/tools
Project Name :
Project Version :
Language : en
Incorporate Test Results? : No
Include Experimental Features? : No
Exclude Tag :
Technical Tag :
No features found at /root/.dotnet/tools
Pickles completed successfully
In the docker container, if I run
mkdir /features
ln -s /root/.dotnet/tools/pickles /features/pickles
cd /features
pickles
then it also works fine. Of course, this must only be a temporary work-around.
Also note that the Pickles version is not right in the above Pickles output.
Note that the error
Pickles did not complete successfully Could not find a part of the path '/dev/fd/104'.
does not pop up if a features
folder was found and the report generation is successful.
Sorry for the problems here. I'm working on the issue with the Nuget package. Hope to push an update soon.
I have the following docker image:
When I run
and then run
then I get no error. If I, however, run
then I get the following error
Is that a bug or am I misusing your software? With the last version of Pickles I used in the past (v2.21.1), with mono, I was able to run
without any problems.