Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created September 13, 2018 05:55
Show Gist options
  • Save tkssharma/da1eb0e3893a00c817e35b9908fb7370 to your computer and use it in GitHub Desktop.
Save tkssharma/da1eb0e3893a00c817e35b9908fb7370 to your computer and use it in GitHub Desktop.
FROM node:carbon
# Create app directory
WORKDIR /usr/src/app
# Bundle app source
COPY . /usr/src/app/
# npm install
RUN apt-get update && apt-get install && npm install
EXPOSE 3000 9229
CMD [ "npm", "run", "debug" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment