Files
Greg Johnson 7581b6b8c2 initial commit
2025-08-05 15:03:49 +10:00

11 lines
246 B
Docker

# build homebridge
FROM homebridge/homebridge:latest
RUN apt-get -y update && apt-get -y install telnet nmap ed nano lsof
# custom init will copy local plugins to homebridge
COPY init /tmp/init
RUN chmod a+x /tmp/init
ENTRYPOINT ["/tmp/init"]