Skip to content

Instantly share code, notes, and snippets.

@dimuthu
Created February 10, 2020 05:31
Show Gist options
  • Save dimuthu/0a33d74860a1e5b4dd93304c98917812 to your computer and use it in GitHub Desktop.
Save dimuthu/0a33d74860a1e5b4dd93304c98917812 to your computer and use it in GitHub Desktop.
Dockerfile for node
FROM node:13
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
EXPOSE 4000
CMD [ "npm", "run", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment