Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created February 17, 2019 04:24
Show Gist options
  • Save tkssharma/3c088dc61fc194cd6634b392efb68ea1 to your computer and use it in GitHub Desktop.
Save tkssharma/3c088dc61fc194cd6634b392efb68ea1 to your computer and use it in GitHub Desktop.
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