Skip to content

Instantly share code, notes, and snippets.

View mattva01's full-sized avatar

Matthew Gallagher mattva01

View GitHub Profile

Keybase proof

I hereby claim:

  • I am mattva01 on github.
  • I am mattva01 (https://keybase.io/mattva01) on keybase.
  • I have a public key ASC-0AWLxXly66bTnHT9QneJ3nqcb0uap4VfEHAUWMAcxgo

To claim this, I am signing this object:

worker_processes 1;
events {
worker_connections 1024;
}
http {
FROM node:0.11-onbuild
EXPOSE 3000
FROM node
ADD . /usr/src/app
WORKDIR /usr/src/app
# install your application's dependencies
RUN npm install
# replace this with your application's default port
EXPOSE 8888