1
0
Fork 0
salty-dog/Dockerfile

12 lines
343 B
Docker
Raw Normal View History

2019-06-16 02:59:37 +00:00
FROM node:11-stretch
# copy config, which changes rarely
2019-06-17 14:11:26 +00:00
COPY docs/config-docker.yml /root/.salty-dog.yml
# 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
COPY rules /salty-dog/rules
COPY out/bundle.js /salty-dog/out/bundle.js
2019-06-16 02:59:37 +00:00
ENTRYPOINT [ "node", "/salty-dog/out/bundle.js" ]