Skip to content

Instantly share code, notes, and snippets.

@kadel
Last active March 4, 2020 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadel/3a66a3b178fdddab4e4c72b2a9498975 to your computer and use it in GitHub Desktop.
Save kadel/3a66a3b178fdddab4e4c72b2a9498975 to your computer and use it in GitHub Desktop.
Dockerfile for github.com/kadel/demo-frontend
FROM node:12
EXPOSE 3000
WORKDIR /app
ADD . /app/
RUN npm install
RUN npm run build
CMD [ "npm", "run", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment