Skip to content

Instantly share code, notes, and snippets.

@treeder
Created January 22, 2016 01:04
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save treeder/efc76a08c37f0eb71c8a to your computer and use it in GitHub Desktop.
Save treeder/efc76a08c37f0eb71c8a to your computer and use it in GitHub Desktop.
FROM alpine
RUN apk update && apk upgrade
RUN apk add nodejs
WORKDIR /app
ADD . /app
ENTRYPOINT [ "node", "server.js" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment