Skip to content

Instantly share code, notes, and snippets.

@harshitanand
Created August 4, 2017 11:38
Show Gist options
  • Save harshitanand/1fed6f75a5c7c78c4c6b10d4bb9cd101 to your computer and use it in GitHub Desktop.
Save harshitanand/1fed6f75a5c7c78c4c6b10d4bb9cd101 to your computer and use it in GitHub Desktop.
Docker file using node image from iron.io as base image
FROM iron/node
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