Skip to content

Instantly share code, notes, and snippets.

@atifazad
atifazad / Dockerfile
Last active February 21, 2020 21:40
Create your first Docker image based on alpine image
# Start with Linux Alpine image as base
FROM alpine:latest
# Install curl
apk add --no-cache curl
@atifazad
atifazad / Setup Virtualenvwrapper
Last active March 4, 2020 23:27
Setup virtualenvwrapper on Mac OS Catalina
# Step-1: Install Homebrew, if you don’t have it already.
# There are other possibilities as well to install Python3 but I recommend installing it via Homebrew for cleaner installation and easier maintenance (upgrade etc).
# > /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Step-2: Install Python3 (pip3 gets installed automatically)
# > brew install python3
# Step-3: Install Virtualenvwrapper
# > sudo -H pip3 install virtualenvwrapper