wtshare/Dockerfile

9 lines
267 B
Docker
Raw Normal View History

2022-10-14 21:13:16 +00:00
FROM node:16-buster-slim
#RUN apt update && apt install -y git python && apt clean
RUN npm i bittorrent-tracker -g
COPY --chown=node:node . /home/node/wtshare
USER node
WORKDIR /home/node/wtshare
RUN npm i
ENTRYPOINT ["/bin/bash", "/home/node/wtshare/entrypoint.sh"]