feat: dockerfile for node packages
This commit is contained in:
parent
4c0ef6e588
commit
c1f792de8a
|
@ -0,0 +1,14 @@
|
|||
FROM node:12-stretch
|
||||
# alpine may be smaller, but comes with a 10-15% perf hit
|
||||
|
||||
COPY package.json /app/package.json
|
||||
COPY out/ /app/out/
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN yarn install --production
|
||||
RUN yarn global add file:$(pwd)
|
||||
ENV PATH="${PATH}:$(yarn global bin)"
|
||||
|
||||
ENTRYPOINT [ "node", "/app/out/index.js" ]
|
||||
CMD [ "--help" ]
|
Loading…
Reference in New Issue