mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2026-01-10 08:33:59 +01:00
11 lines
294 B
Docker
11 lines
294 B
Docker
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile
|
|
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
COPY rootfs/usr/bin/mqtt-manager/requirements.txt /tmp/
|
|
RUN pip install -r /tmp/requirements.txt
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
RUN chmod +x /usr/bin/mqtt-manager/run.sh |