2022-06-08 00:46:40 +00:00
FROM node:current-alpine AS base
2021-11-02 13:54:10 +00:00
#Add non-root user, add installation directories and assign proper permissions
2022-07-22 15:21:29 +00:00
RUN mkdir -p /opt/meshcentral/meshcentral
2021-11-02 13:54:10 +00:00
2022-06-06 17:39:36 +00:00
# meshcentral installation
2022-07-22 15:21:29 +00:00
WORKDIR /opt/meshcentral/meshcentral
2021-11-02 13:54:10 +00:00
2022-06-07 12:53:16 +00:00
RUN apk add --no-cache bash
2021-12-12 21:04:21 +00:00
2022-06-06 17:39:36 +00:00
2022-06-08 00:46:40 +00:00
FROM base AS builder
2022-06-06 17:39:36 +00:00
2022-06-08 12:21:23 +00:00
ARG DISABLE_MINIFY=""
2022-06-09 19:25:01 +00:00
ARG DISABLE_TRANSLATE=""
2022-06-08 12:21:23 +00:00
2022-06-08 00:46:40 +00:00
COPY ./ /opt/meshcentral/meshcentral/
2022-06-06 17:39:36 +00:00
2022-06-09 19:25:01 +00:00
RUN if ! [ -z "$DISABLE_MINIFY" ] && [ "$DISABLE_MINIFY" != "yes" ] && [ "$DISABLE_MINIFY" != "YES" ] \
&& [ "$DISABLE_MINIFY" != "true" ] && [ "$DISABLE_MINIFY" != "TRUE" ]; then \
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_MINIFY, possible values: yes/true\e[;0m"; exit 1; \
fi
RUN if ! [ -z "$DISABLE_TRANSLATE" ] && [ "$DISABLE_TRANSLATE" != "yes" ] && [ "$DISABLE_TRANSLATE" != "YES" ] \
&& [ "$DISABLE_TRANSLATE" != "true" ] && [ "$DISABLE_TRANSLATE" != "TRUE" ]; then \
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_TRANSLATE, possible values: yes/true\e[;0m"; exit 1; \
fi
2022-07-22 15:21:29 +00:00
# first extractall if need too
RUN if [ -z "$DISABLE_MINIFY" ] || [ -z "$DISABLE_TRANSLATE" ]; then npm install html-minifier jsdom minify-js && cd translate && node translate.js extractall; fi
2022-06-08 12:21:23 +00:00
# minify files
2022-07-22 15:21:29 +00:00
RUN if [ -z "$DISABLE_MINIFY" ]; then cd translate && node translate.js minifyall; fi
2022-06-06 17:39:36 +00:00
# translate
2022-07-22 15:21:29 +00:00
RUN if [ -z "$DISABLE_TRANSLATE" ]; then cd translate && node translate.js translateall; fi
2021-11-02 13:54:10 +00:00
2022-06-08 00:46:40 +00:00
FROM base
ARG INCLUDE_MONGODBTOOLS=""
2022-06-09 19:25:01 +00:00
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ] && [ "$INCLUDE_MONGODBTOOLS" != "yes" ] && [ "$INCLUDE_MONGODBTOOLS" != "YES" ] \
&& [ "$INCLUDE_MONGODBTOOLS" != "true" ] && [ "$INCLUDE_MONGODBTOOLS" != "TRUE" ]; then \
echo -e "\e[0;31;49mInvalid value for build argument INCLUDE_MONGODBTOOLS, possible values: yes/true\e[;0m"; exit 1; \
fi
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then apk add --no-cache mongodb-tools; fi
2022-06-08 00:46:40 +00:00
# copy files from builder-image
COPY --from=builder /opt/meshcentral/meshcentral /opt/meshcentral/meshcentral
COPY --from=builder /opt/meshcentral/meshcentral/docker/startup.sh ./startup.sh
COPY --from=builder /opt/meshcentral/meshcentral/docker/config.json.template /opt/meshcentral/config.json.template
# cleanup
RUN rm -rf /opt/meshcentral/meshcentral/docker
RUN rm -rf /opt/meshcentral/meshcentral/node_modules
2022-07-22 15:21:29 +00:00
# install dependencies from package.json and nedb
RUN cd meshcentral && npm install && npm install nedb
2022-06-08 00:46:40 +00:00
2022-06-07 12:53:16 +00:00
EXPOSE 80 443 4433
2021-11-02 13:54:10 +00:00
2022-06-06 17:40:49 +00:00
# volumes
2021-11-02 13:54:10 +00:00
VOLUME /opt/meshcentral/meshcentral-data
VOLUME /opt/meshcentral/meshcentral-files
2022-06-06 17:40:49 +00:00
VOLUME /opt/meshcentral/meshcentral-web
VOLUME /opt/meshcentral/meshcentral-backup
2021-11-02 13:54:10 +00:00
2022-06-06 17:39:36 +00:00
CMD ["bash", "/opt/meshcentral/startup.sh"]