Skip to content

Instantly share code, notes, and snippets.

@12
Created May 3, 2020 21:11
Show Gist options
  • Save 12/dd85c639b0ec6a95bcbafb1d74d6dbc5 to your computer and use it in GitHub Desktop.
Save 12/dd85c639b0ec6a95bcbafb1d74d6dbc5 to your computer and use it in GitHub Desktop.
FROM node:12.16.1
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run prod:build
EXPOSE 3000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment