7 lines
175 B
Docker
7 lines
175 B
Docker
FROM homeassistant/home-assistant
|
|
|
|
#RUN apt-get update && apt-get install -y nodejs
|
|
RUN apk update && apk add --update nodejs npm
|
|
WORKDIR /config
|
|
CMD [ "./run_on_server.sh" ]
|