1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00

14 lines
223 B
Docker
Raw Normal View History

2022-09-02 16:48:33 +08:00
#
# Dockerfile for bittorrent-tracker
#
FROM node:lts-alpine
MAINTAINER EasyPi Software Foundation
RUN npm install -g bittorrent-tracker
2022-10-18 19:42:59 +08:00
EXPOSE 8000/tcp 8000/udp
2022-09-02 16:48:33 +08:00
ENTRYPOINT ["bittorrent-tracker"]
CMD ["--port", "8000"]