Move your Gmail contacts into Apple iCloud so they sync across your iPhone, iPad, and Mac.
This method keeps contacts in Gmail, but makes them show up on iPhone.
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa | |
echo "Please add this public key to Github \n" | |
echo "https://github.com/account/ssh \n" | |
read -p "Press [Enter] key after this..." | |
echo "Installing xcode-stuff" | |
xcode-select --install |
# Dockerfile for node environment | |
FROM node:9-alpine AS build | |
# optionally install gyp tools for native builds | |
RUN apk add --update --no-cache \ | |
python \ | |
make \ | |
g++ |