2019-06-16 02:59:37 +00:00
|
|
|
FROM node:11-stretch
|
|
|
|
|
2019-06-25 13:39:25 +00:00
|
|
|
# copy config, which changes rarely
|
2019-06-17 14:11:26 +00:00
|
|
|
COPY docs/config-docker.yml /root/.salty-dog.yml
|
|
|
|
|
2019-06-25 13:39:25 +00:00
|
|
|
# copy package first, to invalidate other layers when version changes
|
2019-06-16 02:59:37 +00:00
|
|
|
COPY package.json /salty-dog/package.json
|
2019-07-01 00:39:36 +00:00
|
|
|
|
|
|
|
# copy chunks, largest to smallest (entrypoint)
|
2019-06-30 00:20:50 +00:00
|
|
|
COPY out/vendor.js /salty-dog/out/vendor.js
|
|
|
|
COPY out/main.js /salty-dog/out/main.js
|
2019-07-01 00:39:36 +00:00
|
|
|
COPY out/index.js /salty-dog/out/index.js
|
|
|
|
|
|
|
|
# set up as global cli tool
|
|
|
|
WORKDIR /salty-dog
|
|
|
|
RUN yarn global add file:$(pwd)
|
|
|
|
ENV PATH="${PATH}:$(yarn global bin)"
|
2019-06-25 13:39:25 +00:00
|
|
|
|
|
|
|
COPY rules /salty-dog/rules
|
2019-06-16 02:59:37 +00:00
|
|
|
|
2019-07-01 00:39:36 +00:00
|
|
|
ENTRYPOINT [ "node", "/salty-dog/out/index.js" ]
|
|
|
|
CMD [ "--help" ]
|