11 lines
246 B
Docker
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"]
|
|
|