This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
cachet-monitor/Dockerfile

15 lines
229 B
Docker
Raw Normal View History

2021-10-27 19:00:21 +00:00
FROM node:16.13.0-alpine
2020-02-27 18:04:38 +00:00
MAINTAINER mail@sp-codes.de
WORKDIR monitor
COPY index.js package.json ./
RUN mkdir -p /monitor/data \
&& apk --no-cache add nmap git \
&& npm install \
&& apk del git
CMD ["node", "index.js"]