2019-06-16 02:59:37 +00:00
|
|
|
FROM node:11-stretch
|
|
|
|
|
2019-06-16 03:45:18 +00:00
|
|
|
COPY docs/config-stderr.yml /root/.salty-dog.yml
|
2019-06-16 02:59:37 +00:00
|
|
|
COPY package.json /salty-dog/package.json
|
2019-06-16 03:04:41 +00:00
|
|
|
COPY out/bundle.js /salty-dog/out/bundle.js
|
2019-06-16 02:59:37 +00:00
|
|
|
|
|
|
|
WORKDIR /salty-dog
|
|
|
|
|
|
|
|
ENV PATH "${PATH}:/usr/local/lib/node_modules"
|
|
|
|
|
|
|
|
ENTRYPOINT [ "node", "/salty-dog/out/bundle.js" ]
|