I have the following docker image: ```docker FROM busybox AS unpack ARG RELEASE_VERSION=4.0.1 ADD https://github.com/picklesdoc/pickles/releases/download/v${RELEASE_VERSION}/Pickles-exe-linux-x64-${RELEASE_VERSION}.zip /tmp/pickles.zip RUN unzip /tmp/pickles.zip -d /pickles \ && chmod +x /pickles/Pickles FROM mcr.microsoft.com/dotnet/runtime:6.0 COPY --from=unpack /pickles /pickles ``` When I run ```bash docker build . -t pickles:local docker run -it pickles:local bash ``` and then run ```bash cd /pickles ./Pickles ``` then I get no error. If I, however, run ```bash cd / /pickles/Pickles ``` then I get the following error ``` Pickles did not complete successfully Could not find a part of the path '/dev/fd/102'. ``` 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 ```bash /mono /pickles/Pickles.exe ``` without any problems.