Newer
Older
wizarr-notify / Dockerfile
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 package.json package-lock.json ./
RUN npm i

COPY index.js ./
COPY default_templates default_templates