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
Renovate Bot b2ad2abc61
All checks were successful
continuous-integration/drone/push Build is passing
Update node Docker tag to v14.10.0
2020-09-10 02:03:23 +00:00

15 lines
229 B
Docker

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