I am trying to install sluethkit on my windows based conatiner but I am not able to do it. In ubuntu based docker image I was doing it by running apt-get sluethkit , what is the way to do it in windows based conatiner I am using,
This is my docker file I am using a python based windows container as my base image.
FROM python:3.7-windowsservercore-1809
#ADD scripts/installChoco.ps1 /installChoco.ps1
#TO INSTALL CHOCO
RUN powershell Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
#RUN powershell .\installChoco.ps1 -Wait; Remove-Item c:\installChoco.ps1 -Force;
RUN powershell choco install sleuthkit -y
WORKDIR /opt
COPY . .
#RUN
CMD ["test.py"]
ENTRYPOINT ["python"]
I want to install sleythkit directly from the command line or powershell since it will be used in the client machine.
I tried installing chocolatey package manager which does the same job as apt-get command in Linux.
I was able to install chocolatey but I am not able to install sluethkit or other applications, it shows me this error while building the dockerfile.
log file