1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/bittorrent-tracker/Dockerfile

14 lines
223 B
Docker
Raw Normal View History

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