mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
14 lines
210 B
Docker
14 lines
210 B
Docker
|
#
|
||
|
# Dockerfile for bittorrent-tracker
|
||
|
#
|
||
|
|
||
|
FROM node:lts-alpine
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN npm install -g bittorrent-tracker
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
ENTRYPOINT ["bittorrent-tracker"]
|
||
|
CMD ["--port", "8000"]
|