Old ngn4 website
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
241 B

  1. FROM node:8.15.0 as build
  2. WORKDIR /ngn4
  3. COPY . /ngn4/
  4. RUN rm -rf data node_modules .git Dockerfile screenlog.0 access.log
  5. RUN npm install
  6. FROM node:8.15.0 as dist
  7. COPY --from=0 /ngn4 /ngn4
  8. WORKDIR /ngn4
  9. CMD ["/usr/local/bin/node", "."]