tacticalrmm/docker/containers/tactical-meshcentral/dockerfile

15 lines
250 B
Plaintext
Raw Normal View History

2020-11-16 19:28:10 +00:00
FROM node:12-alpine
WORKDIR /home/node/app
ENV TACTICAL_DIR /opt/tactical
RUN npm install meshcentral@0.6.62
COPY docker/containers/tactical-meshcentral/entrypoint.sh /
RUN chmod +x /entrypoint.sh
2020-11-19 03:42:45 +00:00
EXPOSE 80 443
2020-11-16 19:28:10 +00:00
ENTRYPOINT [ "/entrypoint.sh" ]