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