This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start with Linux Alpine image as base | |
FROM alpine:latest | |
# Install curl | |
apk add --no-cache curl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
OlderNewer