See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| require 'nokogiri' | |
| require 'open-uri' | |
| # Get a Nokogiri::HTML:Document for the page we're interested in... | |
| doc = Nokogiri::HTML(open('http://www.google.com/search?q=tenderlove')) | |
| # Do funky things with it using Nokogiri::XML::Node methods... | |
| #### |
| # docker image with elixir, docker, docker-compose | |
| FROM elixir:1.9.4 | |
| RUN set -ex \ | |
| && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/x86_64/ | grep -o -e 'docker-[.0-9]*\.tgz' | sort -r | head -n 1) \ | |
| && DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/${DOCKER_VERSION}" \ | |
| && echo Docker URL: $DOCKER_URL \ | |
| && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ | |
| && ls -lha /tmp/docker.tgz \ |
| # docker image based on ubuntu:18.04 with docker, erlang, elixir | |
| FROM ubuntu:18.04 | |
| RUN apt-get update -qq && \ | |
| apt-get upgrade -qq -y && \ | |
| apt-get install -qq -y \ | |
| build-essential \ | |
| autoconf \ | |
| libncurses5-dev \ |