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
Samuel Philipp 7d53c29d0d
All checks were successful
continuous-integration/drone/push Build is passing
updated base image
2020-02-27 23:18:54 +01:00

14 lines
223 B
Docker

FROM node:13-alpine
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"]