Skip to content

Instantly share code, notes, and snippets.

@praveenweb
Created February 7, 2018 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save praveenweb/d6665015cee658cc7b883c4bb95d3e29 to your computer and use it in GitHub Desktop.
Save praveenweb/d6665015cee658cc7b883c4bb95d3e29 to your computer and use it in GitHub Desktop.
FROM node:carbon
# Create app directory
WORKDIR /app
# Install app dependencies
RUN npm -g install serve
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./
RUN npm install
# Bundle app source
COPY src /app
#Build react/vue/angular bundle static files
RUN npm run build
EXPOSE 8080
# serve dist folder on port 8080
CMD ["serve", "-s", "dist", "-p", "8080"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment