This file contains hidden or 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
From github: | |
autopair; | |
emacs-async; | |
emacs-neotree; | |
Fill-Column-Indicator; | |
helm; | |
helm-projectile; | |
highlight-indent-guides; | |
From Melpa: |
This file contains hidden or 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
FROM ruby:2.3.1 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
# postgresql repo for Ubuntu 16.04 | |
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" > /etc/apt/sources.list.d/pgdg.list | |
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - | |
# install postgresql-client | |
RUN apt-get update && apt-get install -y postgresql-client-9.6 --no-install-recommends && rm -rf /var/lib/apt/lists/* |