2018-05-18 08:55:33 -04:00
|
|
|
FROM node:6.9.5 as app
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-03-23 12:36:41 -04:00
|
|
|
WORKDIR /app
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-05-22 08:45:01 -04:00
|
|
|
#wildcard as some files may not be in all repos
|
|
|
|
COPY package*.json npm-shrink*.json /app/
|
2018-05-18 08:55:33 -04:00
|
|
|
|
|
|
|
RUN npm install --quiet
|
|
|
|
|
|
|
|
COPY . /app
|
2018-03-23 12:14:30 -04:00
|
|
|
|
2018-06-13 11:21:32 -04:00
|
|
|
|
2018-01-16 07:27:36 -05:00
|
|
|
RUN npm run compile:all
|
|
|
|
|
2018-05-18 08:55:33 -04:00
|
|
|
FROM node:6.9.5
|
2018-01-16 07:27:36 -05:00
|
|
|
|
2018-03-23 12:36:41 -04:00
|
|
|
COPY --from=app /app /app
|
2018-03-23 12:26:42 -04:00
|
|
|
|
2018-01-16 07:27:36 -05:00
|
|
|
WORKDIR /app
|
2018-05-22 08:45:01 -04:00
|
|
|
RUN chmod 0755 ./install_deps.sh && ./install_deps.sh
|
2018-03-23 13:21:15 -04:00
|
|
|
USER node
|
2018-01-16 07:27:36 -05:00
|
|
|
|
|
|
|
CMD ["node","app.js"]
|