Created
April 14, 2018 09:00
-
-
Save Buffer0x7cd/f73d1cfd09dcfb3c6070c12e86275b1c 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:9.3.0-onbuild | |
COPY ./ /usr/src/app | |
RUN npm install | |
EXPOSE 3000 | |
ENTRYPOINT ["npm"] | |
CMD ["run", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment