Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 24, 2019 18:42
Show Gist options
  • Select an option

  • Save 100daysofdevops/9025fcabf7a6b1690832308d4a96fbc2 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/9025fcabf7a6b1690832308d4a96fbc2 to your computer and use it in GitHub Desktop.
FROM node:7
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
CMD node index.js
EXPOSE 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment