9 lines
267 B
Docker
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"]
|