Newer
Older
wizarr-notify / Dockerfile
@Mark Bavis Mark Bavis on 21 Nov 230 bytes Dockerized server
FROM node:latest

RUN mkdir -p /opt/wizarr-notify/templates
WORKDIR /opt/wizarr-notify

EXPOSE 80
VOLUME /opt/wizarr-notify/templates

CMD node index.js

COPY index.js default_templates package.json package-lock.json ./
RUN npm i