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.

14 lines
186 B

  1. FROM node:13.1.0
  2. # set work directory
  3. WORKDIR /app
  4. # copy project
  5. COPY . /app/
  6. # install dependencies
  7. RUN npm install -g npm@latest
  8. RUN npm install
  9. # build project
  10. RUN npm run build