1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/bittorrent-tracker/Dockerfile
2022-10-18 19:42:59 +08:00

14 lines
223 B
Docker

#
# Dockerfile for bittorrent-tracker
#
FROM node:lts-alpine
MAINTAINER EasyPi Software Foundation
RUN npm install -g bittorrent-tracker
EXPOSE 8000/tcp 8000/udp
ENTRYPOINT ["bittorrent-tracker"]
CMD ["--port", "8000"]