Newer
Older
wizarr-notify / Dockerfile
@Mark Mark 13 days ago 270 bytes Fix docker build
FROM node:latest

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

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

EXPOSE 80
VOLUME /opt/wizarr-notify/templates

CMD node index.js