Created
February 17, 2019 04:24
-
-
Save tkssharma/3c088dc61fc194cd6634b392efb68ea1 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 . . | |
# npm install | |
RUN npm install | |
# Run npm install --global grpc --unsafe-perm | |
EXPOSE 3004 9204 | |
CMD [ "npm", "run", "watchserver" ] | |
CMD [ "npm", "run", "startdev" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment