Skip to content

Instantly share code, notes, and snippets.

View nfelsen's full-sized avatar

Nathaniel Felsen nfelsen

View GitHub Profile
@jslatts
jslatts / Dockerfile
Last active August 29, 2015 14:05
Dockerfile for node.js app
# Dockerfile to run node app
# VERSION 1 - EDITION 2
# Base image used is Ubuntu 14.04 LTS
FROM ubuntu:14.04
MAINTAINER me
# Install wget
RUN apt-get update && apt-get install -y \