Closed sieuwe closed 3 years ago
Hello @sieuwe,
Python isn't installed by default in the docker image, you need to extend the image to install it using RUN sudo apt-get install
in the Dockerfile, take a look at this example.
Regards.
Hi @MegaDrive68k
I thought this was included because the Py WinRM plugin is included which needs python to work.
Describe the bug After installation I tried running commands on my local node (rundeck server). whoami is working, but when I try python --version, I get Failed: NonZeroResultCode: Result code was 127.
My Rundeck detail
To Reproduce Steps to reproduce the behavior:
Expected behavior Expected to see the python version that is installed on the docker image.
Additional information I was trying this to use the 'WinRM Node Executor Python' for running commands on a Windows node, but I got 'Failed: IOFailure: [WinRMPython] Cannot run program "python": error=2, No such file or directory' when I run 'whoami' on the Windows node.