| 1234567891011121314151617181920212223 |
- FROM node:10.15.3 as app
- WORKDIR /app
- #wildcard as some files may not be in all repos
- COPY package.json package-lock.json /app/
- RUN npm install --quiet
- COPY . /app
- RUN make compile_full
- FROM node:10.15.3
- COPY --from=app /app /app
- WORKDIR /app
- RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
- USER node
- CMD ["node", "--expose-gc", "app.js"]
|