wtshare/Dockerfile
2022-10-14 23:13:16 +02:00

9 lines
267 B
Docker

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"]