matrixssbook/Dockerfile

12 lines
239 B
Docker
Raw Permalink Normal View History

2023-05-25 02:04:06 +00:00
FROM node:lts-slim
RUN apt update && apt install -y tini
ENTRYPOINT ["tini", "--", "node", "."]
COPY --chown=node:node . /appservice
WORKDIR /appservice
USER node
RUN npm i --no-audit --no-fund
CMD ["-p", "8000", "-c", "data/xss.yaml"]