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