Last active
September 25, 2015 21:54
-
-
Save ryanbennettvoid/ebd651c7e8840bce9d35 to your computer and use it in GitHub Desktop.
This file contains 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
# Dockerfile for a generic Ubuntu Node.js server | |
FROM ubuntu:14.04 | |
RUN apt-get update | |
RUN apt-get install -y wget curl npm | |
RUN npm install -g n | |
RUN n stable | |
RUN ln -s /usr/bin/nodejs /usr/bin/node | |
RUN npm install -g nodemon | |
RUN mkdir /app | |
RUN cd /app | |
RUN npm init -y | |
RUN npm install express --save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment