mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
2b52b5995a
This should fix: #224 #265 #301 #319
47 lines
1.2 KiB
Docker
47 lines
1.2 KiB
Docker
FROM node:12.16.1-alpine AS builder
|
|
|
|
LABEL maintainer="Andreas Peters <support@aventer.biz>"
|
|
#Upstream URL: https://git.aventer.biz/AVENTER/docker-matrix-dimension
|
|
|
|
WORKDIR /home/node/matrix-dimension
|
|
|
|
RUN mkdir -p /home/node/matrix-dimension
|
|
|
|
COPY . /home/node/matrix-dimension
|
|
|
|
RUN chown -R node /home/node/matrix-dimension
|
|
|
|
USER node
|
|
|
|
RUN npm clean-install && \
|
|
node /home/node/matrix-dimension/scripts/convert-newlines.js /home/node/matrix-dimension/docker-entrypoint.sh && \
|
|
NODE_ENV=production npm run-script build
|
|
|
|
FROM node:12.16.1-alpine
|
|
|
|
WORKDIR /home/node/matrix-dimension
|
|
|
|
COPY --from=builder /home/node/matrix-dimension/docker-entrypoint.sh /
|
|
|
|
COPY --from=builder /home/node/matrix-dimension/build /home/node/matrix-dimension/build
|
|
COPY --from=builder /home/node/matrix-dimension/package* /home/node/matrix-dimension/
|
|
COPY --from=builder /home/node/matrix-dimension/config /home/node/matrix-dimension/config
|
|
|
|
RUN chown -R node /home/node/matrix-dimension
|
|
|
|
RUN mkdir /data && chown -R node /data
|
|
|
|
USER node
|
|
|
|
RUN npm clean-install --production
|
|
|
|
VOLUME ["/data"]
|
|
|
|
# Ensure the database doesn't get lost to the container
|
|
ENV DIMENSION_DB_PATH=/data/dimension.db
|
|
|
|
EXPOSE 8184
|
|
# CMD ["/bin/sh"]
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|