Skip to content

Instantly share code, notes, and snippets.

View sandrogomez's full-sized avatar
🏠
Working from home

Sandro Gomez sandrogomez

🏠
Working from home
View GitHub Profile
@sandrogomez
sandrogomez / .dockerignore
Created March 8, 2018 13:28 — forked from davidderus/.dockerignore
Docker + Rails + Puma + Postgres + Nginx
.git
.gitignore
/doc
.yardoc
coverage
jsdoc
/tmp
/log
Dockerfile
Dockerfile.prod
@sandrogomez
sandrogomez / Dockerfile
Created August 24, 2017 17:47 — forked from konklone/Dockerfile
Dockerfile for installing Ruby 2.0 and RVM
FROM ubuntu
MAINTAINER Eric Mill "[email protected]"
# turn on universe packages
RUN echo "deb http://archive.ubuntu.com/ubuntu raring main universe" > /etc/apt/sources.list
RUN apt-get update
# basics
RUN apt-get install -y nginx openssh-server git-core openssh-client curl
RUN apt-get install -y nano