mjolnir/Dockerfile

16 lines
288 B
Docker
Raw Permalink Normal View History

FROM node:16-alpine
2019-09-26 02:13:20 +00:00
COPY . /tmp/src
RUN cd /tmp/src \
2019-10-31 16:55:44 +00:00
&& yarn install \
&& yarn build \
2019-09-26 02:13:20 +00:00
&& mv lib/ /mjolnir/ \
&& mv node_modules / \
&& cd / \
&& rm -rf /tmp/*
ENV NODE_ENV=production
ENV NODE_CONFIG_DIR=/data/config
CMD node /mjolnir/index.js
VOLUME ["/data"]