You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
517 B

  1. FROM node:lts-alpine
  2. # install simple http server for serving static content
  3. RUN npm install -g http-server
  4. # make the 'app' folder the current working directory
  5. WORKDIR /app
  6. # copy both 'package.json' and 'package-lock.json' (if available)
  7. COPY package*.json ./
  8. # install project dependencies
  9. RUN npm install
  10. # copy project files and folders to the current working directory (i.e. 'app' folder)
  11. COPY . .
  12. # build app for production with minification
  13. RUN npm run build
  14. EXPOSE 8080
  15. CMD [ "http-server", "dist" ]