Python - How to apply patch to Python and Install Python via Pyenv
Introduction In this post, we will see how we can apply a patch to Python and…
March 03, 2021
We will introduce a Package Manager for Windows: Chocolatey
. In automations, it is necessary to install various tools, softwares from command line.
In this post, we will install git and osquery.
Open powershell console.
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"));
Lets install git.
choco install git -y
choco install osquery --version 3.4.0 -y;
FROM microsoft/windowsservercore:ltsc2016
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 git -y;
RUN choco install osquery --version 3.4.0 -y;
Introduction In this post, we will see how we can apply a patch to Python and…
Bootstrap has a simple solution to have sticky blocks in your html. I’ve given a…
This is regarding the timeit implementation in python. The basic requirement…
Introduction When I migrated all of my drupal-7 website to drupal-8, I wrote…
Introduction In this guide, We will learn about branching, handling conflict…
Introduction In last post, we saw How to read CSV with Headers into Dictionary…
Introduction This post has the complete code to send email through smtp server…
Introduction In a normal email sending code from python, I’m getting following…
Introduction In one of my app, I was using to talk to . I have used some event…
Introduction So you have a Django project, and want to run it using docker image…
Introduction It is very important to introduce few process so that your code and…
Introduction In this post, we will see a sample Jenkin Pipeline Groovy script…