Skip to content

Instantly share code, notes, and snippets.

@gcmatheusj
Created March 23, 2020 20:04
Show Gist options
  • Select an option

  • Save gcmatheusj/f4b4b591ee16c867b0c831f3556be20f to your computer and use it in GitHub Desktop.

Select an option

Save gcmatheusj/f4b4b591ee16c867b0c831f3556be20f to your computer and use it in GitHub Desktop.
FROM node:12
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment