Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Created July 2, 2020 18:12
Show Gist options
  • Save tushartuteja/ae7921951b810865c4b96a79b83cf3c7 to your computer and use it in GitHub Desktop.
Save tushartuteja/ae7921951b810865c4b96a79b83cf3c7 to your computer and use it in GitHub Desktop.
FROM node:10.15.3-alpine
RUN mkdir /myapp
WORKDIR /myapp
RUN cd /myapp
COPY service_a/package.json .
RUN npm install
EXPOSE 3000
CMD ["./dev-start.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment