mjolnir/Dockerfile
gnuxie 7f08fe8aa8 Bump minimum node version to 16.
We already made the mistake of using features from 16 without realising
Previously: https://github.com/matrix-org/mjolnir/pull/192
2022-07-06 14:23:38 +01:00

16 lines
288 B
Docker

FROM node:16-alpine
COPY . /tmp/src
RUN cd /tmp/src \
&& yarn install \
&& yarn build \
&& 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"]