Created
September 13, 2018 05:55
-
-
Save tkssharma/da1eb0e3893a00c817e35b9908fb7370 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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