Skip to content

Instantly share code, notes, and snippets.

@markthethomas
markthethomas / Dockerfile
Last active October 10, 2015 16:01
Example node dockerfile
#using debian:jessie for it's smaller size over ubuntu
FROM debian:jessie
# Replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
# Set environment variables
ENV appDir /var/www/app/current
# Run updates and install deps