1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/bittorrent-tracker/Dockerfile

14 lines
223 B
Docker
Raw Normal View History

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