How to Patch and Build Python 3.9.x for FIPS enabled Openssl
Introduction In this post, we will see Python 3.9.x patch for FIPS enabled…
March 03, 2021
Often in automation, we need to install stuff from command line, not from the UI. We will install Perl from command line, and with Dockerfile.
As we have seen in previous post on How to install packages from command line This post is motivated from that only.
Open powershell
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; \
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12'; \
iex ((New-Object System.Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"));
Once chocolatey is installed, you need to fire just one command to install strawberry perl or activeperl.
choco install strawberryperl -y;
FROM microsoft/windowsservercore:ltsc2016
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ENV CHOCO_URL=https://chocolatey.org/install.ps1
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; `
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12'; `
iex ((New-Object System.Net.WebClient).DownloadString("$env:CHOCO_URL"));
RUN choco install strawberryperl -y;
Introduction In this post, we will see Python 3.9.x patch for FIPS enabled…
Static websites have several advantages over dyanamic websites. If you are…
Introduction In your backend and frontend projects, you always need to deal with…
This post some useful tips of using strings, and some issues while dealing with…
Introduction In our previous post, where we saw How to configure comments module…
Introduction We will see how we can install Python 3.7 on Windows without UI. i…
Introduction Strapi is a backend system provides basic crud operations with…
Introduction I had to create many repositories in an Github organization. I…
Introduction I was trying to download some youtube videos for my kids. As I have…
Introduction In this post, we will explore some useful command line options for…
Introduction In this post, we will see how we can apply a patch to Python and…
Introduction We will introduce a Package Manager for Windows: . In automations…