This repository has been archived on 2021-10-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
cachet-monitor/Dockerfile
Renovate Bot e8904ad861
All checks were successful
continuous-integration/drone/push Build is passing
Update node Docker tag to v14.15.1
2020-11-17 05:02:00 +00:00

14 lines
229 B
Docker

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