Skip to content

Instantly share code, notes, and snippets.

View gpolyn's full-sized avatar

Gallagher Polyn gpolyn

View GitHub Profile
FROM ubuntu:trusty
RUN apt-get update
RUN apt-get -y install wget
RUN apt-get -y install fontconfig
RUN apt-get install -y -q python-software-properties python python-setuptools python-virtualenv python-dev python-distribute python-pip
WORKDIR /usr/local/src/phantomjs
RUN wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
RUN tar xvf phantomjs-1.9.7-linux-x86_64.tar.bz2
RUN sudo ln -sf /usr/local/src/phantomjs/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/phantomjs
FROM ubuntu:trusty
RUN apt-get update
RUN apt-get -y install wget
RUN apt-get -y install fontconfig
RUN apt-get install -y -q python-software-properties python python-setuptools python-virtualenv python-dev python-distribute python-pip
WORKDIR /usr/local/src/phantomjs
RUN wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
RUN tar xvf phantomjs-1.9.7-linux-x86_64.tar.bz2
RUN sudo ln -sf /usr/local/src/phantomjs/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/phantomjs
# docker image for running CC test suite
FROM ubuntu
RUN apt-get update
RUN apt-get -y install wget
RUN apt-get -y install git
# install Ruby 1.9.3-p484
RUN apt-get update
RUN apt-get -y install build-essential
@gpolyn
gpolyn / Jekyll notes
Created January 28, 2014 00:19
notes on Jekyll (jekyllrb.com)
* http://destroytoday.com/blog/hello-world-im-jekyll says .htaccess not recognized by Jekyll
@gpolyn
gpolyn / rvm cheatsheet
Last active January 4, 2016 17:49
RVM shortcuts and associated knowledge (references)
rvm get stable # update rvm
rvm list # 'installed' rubies
rvm list gemsets # gemsets for each installed ruby (including 'default' and 'global')
rvm gemset list # gemsets for the current ruby
----------