Files
homeassistant-addons/eufy-ha-mqtt-bridge/Dockerfile-real
2021-01-22 00:09:51 +01:00

20 lines
605 B
Plaintext

FROM hassioaddons/debian-base
ENV LANG C.UTF-8
ARG VERSION=0.2.3
# install node and build tools (needed by node-pre-gy)
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt install -y nodejs g++ make python
# add source and unpack
ADD "https://github.com/matijse/eufy-ha-mqtt-bridge/archive/${VERSION}.tar.gz" /src.tar.gz
RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1
# install all (and json2yaml for cofiguration parsing)
WORKDIR /app
RUN npm install && npm install -g json2yaml && echo ${VERSION} > /version
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]